12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
-
-
-
-
-
-
-
- define('CARDDAV_PROTOCOL', 'https');
-
-
- define('CARDDAV_SERVER', 'cloud.{{ domain }}');
-
-
- define('CARDDAV_PORT', '443');
-
-
-
-
-
-
-
-
-
-
- define('CARDDAV_PATH', '/remote.php/dav/addressbooks/users/%u/contacts/');
-
-
-
-
-
-
-
- define('CARDDAV_DEFAULT_PATH', '/remote.php/dav/addressbooks/users/%u/contacts/');
-
-
-
-
-
-
-
-
-
- define('CARDDAV_GAL_MIN_LENGTH', 5);
-
-
-
-
- define('CARDDAV_CONTACTS_FOLDER_NAME', '%u Addressbook');
-
-
-
-
-
-
- define('CARDDAV_SUPPORTS_SYNC', true);
-
-
-
-
-
-
- define('CARDDAV_SUPPORTS_FN_SEARCH', false);
-
-
-
-
-
- define('CARDDAV_URL_VCARD_EXTENSION', '.vcf');
|