From 36db38827d97a769e92a01727389a47491034577 Mon Sep 17 00:00:00 2001 From: "Jeroen van Meeuwen (Kolab Systems)" Date: Sat, 5 May 2012 02:04:57 +0100 Subject: Add zpush configuration file template --- share/templates/zpush/config.php.tpl | 106 +++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 share/templates/zpush/config.php.tpl (limited to 'share') diff --git a/share/templates/zpush/config.php.tpl b/share/templates/zpush/config.php.tpl new file mode 100644 index 0000000..de30af7 --- /dev/null +++ b/share/templates/zpush/config.php.tpl @@ -0,0 +1,106 @@ + "", + 'shared' => "Shared Folders", + 'users' => "Other Users" + ) + ); + + define('KOLAB_IMAP_PORT', 143); + define('KOLAB_IMAP_OPTIONS', "/tls/novalidate-cert"); + + define('KOLAB_INDEX',"/var/cache/kolab/z-push/kolabindex"); + + //KolabMode + // 0 = FlatMode + // 1 = FolderMode + // 2 = try to determine the mode + define("KOLAB_MODE",2); + // define which mobile support foldermode + // this list is checked if KOLAB_MODE is set to 2 + define("KOLAB_MOBILES_FOLDERMODE","iphone:ipod:ipad"); + // folders by default if annotation is not found + // possiblename1:possiblename2: ...... + // if no folders found the last found will be the default + define('KOLAB_DEFAULTFOLDER_DIARY',"calendar:kalender:calendrier:agenda"); + define('KOLAB_DEFAULTFOLDER_CONTACT',"contacts:kontact"); + define('KOLAB_DEFAULTFOLDER_TASK',"task:taske"); + // If 1: shared folders will be read-only, even if the user have rights on it + define('KOLAB_SHAREDFOLDERS_RO',"1"); + + // Logfile + define('KOLAB_LOGFILE',"/var/log/z-push/access.log"); + //For Gal + define('SYNC_GAL_DISPLAYNAME','cn'); + define('SYNC_GAL_PHONE','telephonenumber'); + define('SYNC_GAL_OFFICE', ''); + define('SYNC_GAL_TITLE','title'); + define('SYNC_GAL_COMPANY','o'); + define('SYNC_GAL_ALIAS','uid'); + define('SYNC_GAL_FIRSTNAME','givenname'); + define('SYNC_GAL_LASTNAME','sn'); + define('SYNC_GAL_HOMEPHONE','homephone'); + define('SYNC_GAL_MOBILEPHONE','mobile'); + define('SYNC_GAL_EMAILADDRESS','mail'); + +?> -- cgit v1.1