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