| | |
| | | // Enable this option to force LSUB command usage instead. |
| | | $rcmail_config['imap_force_lsub'] = false; |
| | | |
| | | // Some server configurations (e.g. Courier) doesn't list folders in all namespaces |
| | | // Enable this option to force listing of folders in all namespaces |
| | | $rcmail_config['imap_force_ns'] = false; |
| | | |
| | | // IMAP connection timeout, in seconds. Default: 0 (no limit) |
| | | $rcmail_config['imap_timeout'] = 0; |
| | | |
| | |
| | | // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING! |
| | | $rcmail_config['enable_installer'] = false; |
| | | |
| | | // provide an URL where a user can get support for this Roundcube installation |
| | | // PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE! |
| | | $rcmail_config['support_url'] = ''; |
| | | |
| | | // replace Roundcube logo with this image |
| | | // specify an URL relative to the document root of this Roundcube installation |
| | | $rcmail_config['skin_logo'] = null; |
| | | |
| | | // automatically create a new Roundcube user when log-in the first time. |
| | | // a new user will be created once the IMAP login succeeds. |
| | | // set to false if only registered users can use this service |
| | | $rcmail_config['auto_create_user'] = true; |
| | | |
| | | // use this folder to store log files (must be writeable for apache user) |
| | | // This is used by the 'file' log driver. |
| | | $rcmail_config['log_dir'] = 'logs/'; |
| | |
| | | // tell PHP that it should work as under secure connection |
| | | // even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set) |
| | | // e.g. when you're running Roundcube behind a https proxy |
| | | // this option is mutually exclusive to 'force_https' and only either one of them should be set to true. |
| | | $rcmail_config['use_https'] = false; |
| | | |
| | | // Allow browser-autocompletion on login form. |
| | |
| | | // After enabling it all user records need to be updated, e.g. with query: |
| | | // UPDATE users SET username = LOWER(username); |
| | | $rcmail_config['login_lc'] = false; |
| | | |
| | | // automatically create a new Roundcube user when log-in the first time. |
| | | // a new user will be created once the IMAP login succeeds. |
| | | // set to false if only registered users can use this service |
| | | $rcmail_config['auto_create_user'] = true; |
| | | |
| | | // provide an URL where a user can get support for this Roundcube installation |
| | | // PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE! |
| | | $rcmail_config['support_url'] = ''; |
| | | |
| | | // replace Roundcube logo with this image |
| | | // specify an URL relative to the document root of this Roundcube installation |
| | | $rcmail_config['skin_logo'] = null; |
| | | |
| | | // Includes should be interpreted as PHP files |
| | | $rcmail_config['skin_include_php'] = false; |
| | |
| | | // The RDN field that is used for new entries, this field needs |
| | | // to be one of the search_fields, the base of base_dn is appended |
| | | // to the RDN to insert into the LDAP directory. |
| | | 'LDAP_rdn' => 'mail', |
| | | 'LDAP_rdn' => 'cn', |
| | | // The required fields needed to build a new contact as required by |
| | | // the object classes (can include additional fields not required by the object classes). |
| | | 'required_fields' => array('cn', 'sn', 'mail'), |
| | | 'search_fields' => array('mail', 'cn'), // fields to search in |
| | | // mapping of contact fields to directory attributes |
| | | // for every attribute one can specify the number of values (limit) allowed. |
| | | // default is 1, a wildcard * means unlimited |
| | | 'fieldmap' => array( |
| | | // Roundcube => LDAP |
| | | // Roundcube => LDAP:limit |
| | | 'name' => 'cn', |
| | | 'surname' => 'sn', |
| | | 'firstname' => 'givenName', |
| | | 'email' => 'mail', |
| | | 'title' => 'title', |
| | | 'email' => 'mail:*', |
| | | 'phone:home' => 'homePhone', |
| | | 'phone:work' => 'telephoneNumber', |
| | | 'phone:mobile' => 'mobile', |
| | | 'phone:pager' => 'pager', |
| | | 'street' => 'street', |
| | | 'zipcode' => 'postalCode', |
| | | 'region' => 'st', |
| | | 'locality' => 'l', |
| | | 'country' => 'c', |
| | | // if you country is a complex object, you need to configure 'sub_fields' below |
| | | 'country' => 'c', |
| | | 'organization' => 'o', |
| | | 'department' => 'ou', |
| | | 'jobtitle' => 'title', |
| | | 'notes' => 'description', |
| | | // these currently don't work: |
| | | // 'phone:workfax' => 'facsimileTelephoneNumber', |
| | | // 'photo' => 'jpegPhoto', |
| | | // 'manager' => 'manager', |
| | | // 'assistant' => 'secretary', |
| | | ), |
| | | // Map of contact sub-objects (attribute name => objectClass(es)), e.g. 'c' => 'country' |
| | | 'sub_fields' => array(), |
| | | 'sort' => 'cn', // The field to sort the listing by. |
| | | 'scope' => 'sub', // search mode: sub|base|list |
| | | 'filter' => '(objectClass=inetOrgPerson)', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act |
| | |
| | | // -> in this case, assure that groups and contacts are separated due to the concernig filters! |
| | | 'groups' => array( |
| | | 'base_dn' => '', |
| | | 'scope' => 'sub', // search mode: sub|base|list |
| | | 'filter' => '(objectClass=groupOfNames)', |
| | | 'object_classes' => array("top", "groupOfNames"), |
| | | 'member_attr' => 'member', // name of the member attribute, e.g. uniqueMember |
| | |
| | | $rcmail_config['check_all_folders'] = false; |
| | | |
| | | // If true, after message delete/move, the next message will be displayed |
| | | $rcmail_config['display_next'] = false; |
| | | $rcmail_config['display_next'] = true; |
| | | |
| | | // 0 - Do not expand threads |
| | | // 1 - Expand all threads automatically |
| | |
| | | // when user is over quota and Trash is included in the quota. |
| | | $rcmail_config['delete_always'] = false; |
| | | |
| | | // Directly delete messages in Junk instead of moving to Trash |
| | | $rcmail_config['delete_junk'] = false; |
| | | |
| | | // Behavior if a received message requests a message delivery notification (read receipt) |
| | | // 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask) |
| | | // 3 = send automatically if sender is in addressbook, otherwise ask the user |