2014-08-11 17:42:52 +00:00
|
|
|
<?php
|
|
|
|
/***********************************************
|
|
|
|
* File : config.php
|
|
|
|
* Project : Z-Push
|
|
|
|
* Descr : CalDAV backend configuration file
|
|
|
|
************************************************/
|
|
|
|
|
2015-10-25 12:22:03 +00:00
|
|
|
define('CALDAV_PROTOCOL', 'https');
|
|
|
|
define('CALDAV_SERVER', 'localhost');
|
2014-08-11 17:42:52 +00:00
|
|
|
define('CALDAV_PORT', '443');
|
2014-08-12 11:36:40 +00:00
|
|
|
define('CALDAV_PATH', '/caldav/calendars/%u/');
|
2015-10-25 12:22:03 +00:00
|
|
|
define('CALDAV_PERSONAL', 'PRINCIPAL');
|
2015-10-25 17:19:22 +00:00
|
|
|
define('CALDAV_SUPPORTS_SYNC', false);
|
2015-10-25 12:22:03 +00:00
|
|
|
define('CALDAV_MAX_SYNC_PERIOD', 2147483647);
|
2014-08-11 17:42:52 +00:00
|
|
|
|
2014-08-12 11:12:10 +00:00
|
|
|
?>
|