. * * Consult LICENSE file for details ************************************************/ // ************************ // BackendCalDAV settings // ************************ // Server protocol: http or https define('CALDAV_PROTOCOL', 'https'); // Server name define('CALDAV_SERVER', '__CALDAV_SERVER__'); // Server port define('CALDAV_PORT', '443'); // Base URL to principals calendar collection: use '%l' for local part or '%u' for full username define('CALDAV_PATH', '__CALDAV_PATH__'); // Default CalDAV folder (calendar folder/principal). This will be marked as the default calendar in the mobile define('CALDAV_PERSONAL', '__CALDAV_PERSONAL__'); // If the CalDAV server supports the sync-collection operation // DAViCal, SOGo and SabreDav support it // SabreDav version must be at least 1.9.0, otherwise set this to false // Setting this to false will work with most servers, but it will be slower define('CALDAV_SUPPORTS_SYNC', false); // Maximum period to sync. // Some servers don't support more than 10 years so you will need to change this define('CALDAV_MAX_SYNC_PERIOD', 2147483647);