diff options
author | alecpl <alec@alec.pl> | 2010-11-30 13:43:04 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-30 13:43:04 +0000 |
commit | e17553d9548d4870a4579a86c6e425a7f32aecf5 (patch) | |
tree | d10907a9d83471a0266cf9e40e7629078090f61b /config | |
parent | fd371a519d64bbcf6d35288e532dc2179ff1e462 (diff) |
- Add 'login_lc' config option for case-insensitive authentication (#1487113)
- Make username comparison case sensitive on MySQL
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 2b18da333..785a20ae8 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -183,6 +183,10 @@ $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. // set to false if only registered users can use this service |