diff options
author | thomascube <thomas@roundcube.net> | 2008-05-15 21:21:35 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-05-15 21:21:35 +0000 |
commit | b026c3be85cb5617176e1408e2281bea4182e060 (patch) | |
tree | 45dead516741cf9a78b1c069fe5eef66c124d5da /config | |
parent | 405aba83230471ead28adccaa888af73750771f1 (diff) |
Make IMAP auth type configurable (#1483825)
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 670bee200..e4287de7d 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -40,6 +40,9 @@ $rcmail_config['default_host'] = ''; // TCP port used for IMAP connections $rcmail_config['default_port'] = 143; +// IMAP authentication type (auth, plain) or null to use best server supported one +$rcmail_config['imap_auth_type'] = null; + // Automatically add this domain to user names for login // Only for IMAP servers that require full e-mail addresses for login // Specify an array with 'host' => 'domain' values to support multiple hosts |