Sandor Takacs
Sandor Takacs
Bugsack is available on GitHub: https://github.com/funkydude/BugSack
Kolab has a roundcube plugin with sql backend to do the Tasks (http://git.kolab.org/roundcubemail-plugins-kolab/tree/plugins/tasklist). Maybe you can use their sql tables to store the syncronized tasks :)
As I remember the current stable Radicale doesn't support some type of filtering. This is the main problem with Radicale. I modifiled some DAV client code I will search for...
Maybe try to reorder your php extensions in /usr/local/etc/php/extensions.ini . I created a gist with my script to do this: https://gist.github.com/Takika/dfabd00a5a9182f7a482
@fmbiete Sure, of course :) @bax- : I tested the session+redis, the current order is working.
My solution from the caldav.php: ``` php public function BackendCalDAV($config = array()) { if (sizeof($config) > 0) { $this->config = $config; } else { $this->config['protocol'] = CALDAV_PROTOCOL; $this->config['host'] = CALDAV_SERVER;...
Yes, if a user doesn't want to use the BackendCombined backend he/she have to set the correct config variables in the backend specific config.php .
I see it. With PHP IMAP extension we cannot get the capability list, and cannot execute any special LIST command :( I use Roundcube for webmail which uses an own...