| | |
| | | // best server supported one) |
| | | $rcmail_config['imap_auth_type'] = null; |
| | | |
| | | // If you know your imap's root directory and its folder delimiter, |
| | | // you can specify them here. Otherwise they will be determined automatically. |
| | | $rcmail_config['imap_root'] = null; |
| | | // If you know your imap's folder delimiter, you can specify it here. |
| | | // Otherwise it will be determined automatically |
| | | $rcmail_config['imap_delimiter'] = null; |
| | | |
| | | // If IMAP server doesn't support NAMESPACE extension, but you're |
| | | // using shared folders or personal root folder is non-empty, you'll need to |
| | | // set these options. All can be strings or arrays of strings. |
| | | // Folders need to be ended with directory separator, e.g. "INBOX." |
| | | // (special directory "~" is an exception to this rule) |
| | | $rcmail_config['imap_ns_personal'] = null; |
| | | $rcmail_config['imap_ns_other'] = null; |
| | | $rcmail_config['imap_ns_shared'] = null; |
| | | |
| | | // By default IMAP capabilities are readed after connection to IMAP server |
| | | // In some cases, e.g. when using IMAP proxy, there's a need to refresh the list |
| | |
| | | // with this option enabled, all non-secure connections will be redirected. |
| | | // set the port for the ssl connection as value of this option if it differs from the default 443 |
| | | $rcmail_config['force_https'] = false; |
| | | |
| | | // Allow browser-autocompletion on login form |
| | | $rcmail_config['login_autocomplete'] = false; |
| | | |
| | | // If users authentication is not case sensitive this must be enabled. |
| | | // You can also use it to force conversion of logins to lower case. |
| | | $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. |
| | |
| | | // when populating address autocomplete fields server-side. ex: array('sql','Verisign'); |
| | | $rcmail_config['autocomplete_addressbooks'] = array('sql'); |
| | | |
| | | // The minimum number of characters required to be typed in an autocomplete field |
| | | // before address books will be searched. Most useful for LDAP directories that |
| | | // may need to do lengthy results building given overly-broad searches |
| | | $rcmail_config['autocomplete_min_length'] = 1; |
| | | |
| | | // ---------------------------------- |
| | | // USER PREFERENCES |
| | | // ---------------------------------- |