1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /***********************************************
- * File : config.php
- * Project : Z-Push
- * Descr : CalDAV backend configuration file
- *
- * Created : 27.11.2012
- *
- * Copyright 2012 - 2014 Jean-Louis Dupond
- *
- * Jean-Louis Dupond released this code as AGPLv3 here: https://github.com/dupondje/PHP-Push-2/issues/93
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Consult LICENSE file for details
- ************************************************/
-
- // ************************
- // BackendCalDAV settings
- // ************************
-
- // Server protocol: http or https
- define('CALDAV_PROTOCOL', 'https');
-
- // Server name
- define('CALDAV_SERVER', 'cloud.{{ domain }}');
-
- // Server port
- define('CALDAV_PORT', '443');
-
- // Path
- define('CALDAV_PATH', '/remote.php/dav/calendars/%u/');
-
- // Default CalDAV folder (calendar folder/principal). This will be marked as the default calendar in the mobile
- define('CALDAV_PERSONAL', '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', true);
-
-
- // 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);
|