Hey!

I am working on CalDav plugin integration in my Roundcube mailcow. I am using this plugin

packagist.org Icon kolab/calendar - Packagist

The issue is that after following all installation methods, when I try to save the calendar event, it gives my FAILED TO SAVE CHANGES error on Roundcube. There is no error in docker logs of that container mailcow and I also checked the /web/rc/logs/error.logs no errors there also.

Have anyone came across this issue while integrating CalDaV in RoundCube mailcow. I followed each and every step of documentation and just changed these lines inside my config file of calendar plugin

$config['calendar_driver'] = "caldav";
$config['calendar_caldav_server'] = "http://mailcowdockerized-sogo-mailcow-1:20000/SOGo/dav/";
 $config['calendar_caldav_url'] = 'http://mailcowdockerized-sogo-mailcow-1:20000/SOGo/dav/%u/Calendar/';

Any help would be highly appreciated.

Have something to say?

Join the community by quickly registering to participate in this discussion. We'd like to see you joining our great moo-community!

I just changed the these values in config file

$config['calendar_driver'] = "caldav";
$config['calendar_caldav_server'] = "http://mailcowdockerized-sogo-mailcow-1:20000/SOGo/dav/";
 $config['calendar_caldav_url'] = 'http://mailcowdockerized-sogo-mailcow-1:20000/SOGo/dav/%u/Calendar/';

That’s it. In CardDaV I followed the roundcube doucmentation and it is working fine.

Inside CardDAV conf I used these values

$prefs['_GLOBAL']['pwstore_scheme'] = 'des_key';

$prefs['SOGo'] = [
    'accountname'    => 'SOGo',
    'username'       => '%u',
    'password'       => '%p',
    'discovery_url'  => 'http://mailcowdockerized-sogo-mailcow-1:20000/SOGo/dav/',
    'name'           => '%N',
    'use_categories' => true,
    'fixed'          => ['username', 'password'],
];

But for CalDaV configuration, there is no config key to add these values

I tried to change my calendar_cladav_url to this

$config['calendar_caldav_url'] = 'http://%h/SOGo/dav/%u/Calendar/personal/';

But still same issue

No one is typing