* emailadmin: fix problem with UpperLowerCase User Names, use lower case usernames ONLY, when accessing / creating / updating mailboxes

This commit is contained in:
Klaus Leithoff 2011-09-20 10:19:25 +00:00
parent c41b9f6d2c
commit 46bcd9c5ba

View File

@ -365,7 +365,7 @@ class defaultimap extends Net_IMAP
$_username = 'u'.$GLOBALS['egw']->accounts->name2id($_username);
break;
}
return $_username;
return strtolower($_username);
}
/**