diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-10-18 12:14:02 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-10-18 12:14:02 +0200 |
commit | 9f0ca2dca669a3f379d8582f128b7cca7056a921 (patch) | |
tree | a425c936d4d6fb5ffb27e5dde5bd468437238b3a /config | |
parent | 7ea292410644af4b6eaa772a8f71855783ade0ae (diff) | |
parent | 22c67d0ec28f4c9488d26aa35151392a18c74c45 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index a6661c323..371ccaf8c 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -226,10 +226,10 @@ $rcmail_config['login_autocomplete'] = 0; // Forces conversion of logins to lower case. // 0 - disabled, 1 - only domain part, 2 - domain and local part. -// If users authentication is not case-sensitive this must be enabled. -// After enabling it all user records need to be updated, e.g. with query: -// UPDATE users SET username = LOWER(username); -$rcmail_config['login_lc'] = 0; +// If users authentication is case-insensitive this must be enabled. +// Note: After enabling it all user records need to be updated, e.g. with query: +// UPDATE users SET username = LOWER(username); +$rcmail_config['login_lc'] = 2; // Includes should be interpreted as PHP files $rcmail_config['skin_include_php'] = false; |