| | |
| | | // extension if available. Some servers (dovecot 1.x) returns wrong results |
| | | // for shared namespaces in this case. http://trac.roundcube.net/ticket/1486225 |
| | | // Enable this option to force LSUB command usage instead. |
| | | // Deprecated: Use imap_disabled_caps = array('LIST-EXTENDED') |
| | | $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; |
| | | |
| | | // List of disabled imap extensions. |
| | | // Use if your IMAP server has broken implementation of some feature |
| | | // and you can't remove it from CAPABILITY string on server-side. |
| | | // For example UW-IMAP server has broken ESEARCH. |
| | | // Note: Because the list is cached, re-login is required after change. |
| | | $rcmail_config['imap_disabled_caps'] = array(); |
| | | |
| | | // IMAP connection timeout, in seconds. Default: 0 (no limit) |
| | | $rcmail_config['imap_timeout'] = 0; |
| | |
| | | $rcmail_config['smtp_helo_host'] = ''; |
| | | |
| | | // SMTP connection timeout, in seconds. Default: 0 (no limit) |
| | | // Note: There's a known issue where using ssl connection with |
| | | // timeout > 0 causes connection errors (https://bugs.php.net/bug.php?id=54511) |
| | | $rcmail_config['smtp_timeout'] = 0; |
| | | |
| | | // ---------------------------------- |
| | |
| | | 'scope' => 'list', |
| | | 'base_dn' => 'ou=Groups,dc=mydomain,dc=com', |
| | | 'filter' => '(|(objectclass=groupofuniquenames)(objectclass=groupofurls))', |
| | | 'name_attr' => 'cn', |
| | | ), |
| | | 'customers' => array( |
| | | 'name' => 'Customers', |
| | | 'scope' => 'sub', |
| | | 'base_dn' => 'ou=Customers,dc=mydomain,dc=com', |
| | | 'filter' => '(objectClass=inetOrgPerson)', |
| | | 'name_attr' => 'sn', |
| | | ), |
| | | ), |
| | | ); |