mirror of
https://github.com/YunoHost-Apps/z-push_ynh.git
synced 2024-09-03 18:05:58 +02:00
Carddav config
This commit is contained in:
parent
0d5d833e86
commit
f9d00adaeb
1 changed files with 9 additions and 6 deletions
|
@ -31,7 +31,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');
|
||||||
|
@ -45,7 +45,7 @@ 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
|
||||||
|
@ -53,17 +53,20 @@ define('CARDDAV_PATH', '/caldav.php/%u/');
|
||||||
// %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', '/caldav.php/%d/GAL/');
|
||||||
|
|
||||||
|
|
||||||
// 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);
|
||||||
|
|
||||||
// Addressbook display name, the name showed in the mobile device
|
// Addressbook display name, the name showed in the mobile device
|
||||||
// %u: replaced with the username
|
// %u: replaced with the username
|
||||||
|
@ -88,4 +91,4 @@ define('CARDDAV_SUPPORTS_FN_SEARCH', false);
|
||||||
// If your carddav server needs to use file extension to recover a vcard.
|
// If your carddav server needs to use file extension to recover a vcard.
|
||||||
// Davical needs it
|
// Davical needs it
|
||||||
// SOGo official demo online needs it, but some SOGo installation don't need it, so test it
|
// SOGo official demo online needs it, but some SOGo installation don't need it, so test it
|
||||||
define('CARDDAV_URL_VCARD_EXTENSION', '.vcf');
|
define('CARDDAV_URL_VCARD_EXTENSION', '.vcf');
|
||||||
|
|
Loading…
Add table
Reference in a new issue