From df95e790ba49464dd6b093f0c45777288f738d7d Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Thu, 18 Oct 2012 03:52:45 -0400 Subject: [PATCH] Remove automatic to-lowercase conversion of usernames (#1488715) --- 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 a6661c3..371ccaf 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -226,10 +226,10 @@ // 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; -- Gitblit v1.9.1