1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
-
-
-
-
-
-
-
- define('CALDAV_PROTOCOL', 'https');
-
-
- define('CALDAV_SERVER', 'cloud.{{ domain }}');
-
-
- define('CALDAV_PORT', '443');
-
-
- define('CALDAV_PATH', '/remote.php/dav/calendars/%u/');
-
-
- define('CALDAV_PERSONAL', 'personal');
-
-
-
-
-
- define('CALDAV_SUPPORTS_SYNC', true);
-
-
-
-
- define('CALDAV_MAX_SYNC_PERIOD', 2147483647);
|