2014-08-11 17:42:52 +00:00
|
|
|
<?php
|
|
|
|
/***********************************************
|
|
|
|
* File : config.php
|
|
|
|
* Project : Z-Push
|
|
|
|
* Descr : CardDAV backend configuration file
|
|
|
|
************************************************/
|
|
|
|
|
|
|
|
|
2014-08-12 11:12:10 +00:00
|
|
|
define('CARDDAV_PROTOCOL', 'https'); /* http or https */
|
2016-05-06 13:06:52 +00:00
|
|
|
define('CARDDAV_SERVER', '127.0.0.1');
|
2014-08-11 17:42:52 +00:00
|
|
|
define('CARDDAV_PORT', '443');
|
2014-08-12 11:36:40 +00:00
|
|
|
define('CARDDAV_PATH', '/carddav/addressbooks/%u/');
|
|
|
|
define('CARDDAV_DEFAULT_PATH', '/carddav/addressbooks/%u/contacts/'); /* subdirectory of the main path */
|
|
|
|
define('CARDDAV_GAL_PATH', ''); /* readonly, searchable, not syncd */
|
2014-08-11 17:42:52 +00:00
|
|
|
define('CARDDAV_GAL_MIN_LENGTH', 5);
|
|
|
|
define('CARDDAV_CONTACTS_FOLDER_NAME', '%u Addressbook');
|
2014-12-29 15:34:24 +00:00
|
|
|
define('CARDDAV_SUPPORTS_SYNC', false);
|
2014-08-11 17:42:52 +00:00
|
|
|
|
|
|
|
// If the CardDAV server supports the FN attribute for searches
|
2017-04-02 09:19:21 +00:00
|
|
|
// DAViCal supports it, but SabreDav, Nextcloud and SOGo don't
|
2014-08-11 17:42:52 +00:00
|
|
|
// Setting this to true will search by FN. If false will search by sn, givenName and email
|
|
|
|
// It's safe to leave it as false
|
|
|
|
define('CARDDAV_SUPPORTS_FN_SEARCH', false);
|
|
|
|
|
|
|
|
|
|
|
|
// If your carddav server needs to use file extension to recover a vcard.
|
|
|
|
// Davical needs it
|
|
|
|
// SOGo official demo online needs it, but some SOGo installation don't need it, so test it
|
2014-08-11 21:43:16 +00:00
|
|
|
define('CARDDAV_URL_VCARD_EXTENSION', '.vcf');
|
|
|
|
|
2014-08-12 11:12:10 +00:00
|
|
|
?>
|