diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-17 15:00:12 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-17 15:02:18 +0200 |
commit | 48a04205c8513fdc4f923fef556e3db8cc17d9f9 (patch) | |
tree | e18d753dc06c7a5c88208f91c58bf58b68a22f43 /config/main.inc.php.dist | |
parent | 0ae929ffff16f3156fe2750999093593a6e6a88f (diff) |
Fix bug where domain name was converted to lower-case even with login_lc=false (#1488593)
Conflicts:
CHANGELOG
program/include/rcmail.php
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 7f3fd1318..15da00d66 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -219,11 +219,12 @@ $rcmail_config['use_https'] = false; // 0 - disabled, 1 - username and host only, 2 - username, host, password $rcmail_config['login_autocomplete'] = 0; -// If users authentication is not case sensitive this must be enabled. -// You can also use it to force conversion of logins to lower case. +// 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'] = false; +$rcmail_config['login_lc'] = 0; // Includes should be interpreted as PHP files $rcmail_config['skin_include_php'] = false; |