1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/z-push_ynh.git synced 2024-09-03 18:05:58 +02:00

Modification of CARDDAV config file

This commit is contained in:
polytan02 2015-08-10 15:24:15 +01:00
parent a17f85af98
commit e74d718f37

View file

@ -49,7 +49,7 @@
define('CARDDAV_PROTOCOL', 'https'); define('CARDDAV_PROTOCOL', 'https');
// Server name // Server name
define('CARDDAV_SERVER', 'localhost'); define('CARDDAV_SERVER', 'BAIKALDOMAIN');
// Server port // Server port
define('CARDDAV_PORT', '443'); define('CARDDAV_PORT', '443');
@ -63,22 +63,21 @@ define('CARDDAV_PORT', '443');
// %u: replaced with the username // %u: replaced with the username
// %d: replaced with the domain // %d: replaced with the domain
// Add the trailing / // Add the trailing /
define('CARDDAV_PATH', '/caldav.php/%u/'); define('CARDDAV_PATH', 'BAIKALPATH/card.php/addressbooks/%u/');
// Server path to the default addressbook // Server path to the default addressbook
// Mobile device will create new contacts here. It must be under CARDDAV_PATH // Mobile device will create new contacts here. It must be under CARDDAV_PATH
// %u: replaced with the username // %u: replaced with the username
// %d: replaced with the domain // %d: replaced with the domain
// Add the trailing / // Add the trailing /
define('CARDDAV_DEFAULT_PATH', '/caldav.php/%u/addresses/'); define('CARDDAV_DEFAULT_PATH', 'BAIKALPATH/card.php/addressbooks/%u/default');
// Server path to the GAL addressbook. This addressbook is readonly and searchable by the user, but it will NOT be synced. // Server path to the GAL addressbook. This addressbook is readonly and searchable by the user, but it will NOT be synced.
// If you don't want GAL, comment it // If you don't want GAL, comment it
// %u: replaced with the username // %u: replaced with the username
// %d: replaced with the domain // %d: replaced with the domain
// Add the trailing / // Add the trailing /
define('CARDDAV_GAL_PATH', '/caldav.php/%d/GAL/'); define('CARDDAV_GAL_PATH', '');
// Minimal length for the search pattern to do the real search. // Minimal length for the search pattern to do the real search.
define('CARDDAV_GAL_MIN_LENGTH', 5); define('CARDDAV_GAL_MIN_LENGTH', 5);