2012-08-05 21:32:41 +01:00
|
|
|
<?php
|
|
|
|
|
2012-12-10 12:17:41 +01:00
|
|
|
/* Configuration for libkolab */
|
2012-08-05 21:32:41 +01:00
|
|
|
|
2012-12-10 12:17:41 +01:00
|
|
|
// Enable caching of Kolab objects in local database
|
|
|
|
$rcmail_config['kolab_cache'] = true;
|
|
|
|
|
|
|
|
// Specify format version to write Kolab objects (must be a string value!)
|
|
|
|
$rcmail_config['kolab_format_version'] = '3.0';
|
|
|
|
|
|
|
|
// Optional override of the URL to read and trigger Free/Busy information of Kolab users
|
|
|
|
// Defaults to https://<imap-server->/freebusy
|
|
|
|
$rcmail_config['kolab_freebusy_server'] = 'https://<some-host>/<freebusy-path>';
|
|
|
|
|
|
|
|
// Enables listing of only subscribed folders. This e.g. will limit
|
|
|
|
// folders in calendar view or available addressbooks
|
|
|
|
$rcmail_config['kolab_use_subscriptions'] = false;
|
2012-08-05 21:32:41 +01:00
|
|
|
|
2013-07-18 17:47:49 +02:00
|
|
|
// Enables the use of displayname folder annotations as introduced in KEP:?
|
|
|
|
// for displaying resource folder names (experimental!)
|
|
|
|
$rcmail_config['kolab_custom_display_names'] = false;
|
|
|
|
|
2013-09-26 14:53:52 +02:00
|
|
|
// Configuration of HTTP requests.
|
|
|
|
// See http://pear.php.net/manual/en/package.http.http-request2.config.php
|
|
|
|
// for list of supported configuration options (array keys)
|
|
|
|
$rcmail_config['kolab_http_request'] = array();
|
2013-10-07 15:05:34 +02:00
|
|
|
|
|
|
|
// When kolab_cache is enabled Roundcube's messages cache will be redundant
|
|
|
|
// when working on kolab folders. Here we can:
|
|
|
|
// 2 - bypass messages/indexes cache completely
|
|
|
|
// 1 - bypass only messages, but use index cache
|
|
|
|
$rcmail_config['kolab_messages_cache_bypass'] = 0;
|
2014-04-10 12:58:50 +02:00
|
|
|
|
2014-05-15 14:18:23 +02:00
|
|
|
// LDAP directory to find avilable users for folder sharing.
|
|
|
|
// Either contains an array with LDAP addressbook configuration or refers to entry in $config['ldap_public'].
|
|
|
|
// If not specified, the configuraton from 'kolab_auth_addressbook' will be used.
|
|
|
|
$rcmail_config['kolab_users_directory'] = null;
|
|
|
|
|
|
|
|
// Filter to be used for resolving user folders in LDAP.
|
|
|
|
// Defaults to the 'kolab_auth_filter' configuration option.
|
|
|
|
$rcmail_config['kolab_users_filter'] = '(&(objectclass=kolabInetOrgPerson)(|(uid=%u)(mail=%fu)))';
|
|
|
|
|
|
|
|
// Which property of the LDAP user record to use for user folder mapping in IMAP.
|
|
|
|
// Defaults to the 'kolab_auth_login' configuration option.
|
|
|
|
$rcmail_config['kolab_users_id_attrib'] = null;
|
|
|
|
|
|
|
|
// Use these attributes when searching users in LDAP
|
|
|
|
$rcmail_config['kolab_users_search_attrib'] = array('cn','mail','alias');
|
|
|
|
|
|
|
|
|