diff options
Diffstat (limited to 'share/templates/roundcubemail/kolab.inc.php.tpl')
-rw-r--r-- | share/templates/roundcubemail/kolab.inc.php.tpl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/share/templates/roundcubemail/kolab.inc.php.tpl b/share/templates/roundcubemail/kolab.inc.php.tpl new file mode 100644 index 0000000..c7f81a6 --- /dev/null +++ b/share/templates/roundcubemail/kolab.inc.php.tpl @@ -0,0 +1,17 @@ +<?php +// Configuration for Kolab LDAP binding used by Kolab_Storage +\$rcmail_config['kolab']['ldap']['server'] = '$ldap_ldap_uri'; +\$rcmail_config['kolab']['ldap']['basedn'] = '$ldap_base_dn'; +\$rcmail_config['kolab']['ldap']['phpdn'] = '$ldap_service_bind_dn'; +\$rcmail_config['kolab']['ldap']['phppw'] = '$ldap_service_bind_pw'; + +\$rcmail_config['kolab']['freebusy']['server'] = 'https://' . \$_SERVER["HTTP_HOST"] . '/freebusy'; + +\$rcmail_config['kolab']['imap']['secure'] = true; +\$rcmail_config['kolab']['imap']['namespaces'] = array( + array('type' => 'personal', 'name' => '', 'delimiter' => '/'), + array('type' => 'other', 'name' => 'Other Users', 'delimiter' => '/'), + array('type' => 'shared', 'name' => 'Shared Folders', 'delimiter' => '/'), +); + +?> |