mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-07 06:29:49 +01:00
cyrusimap: make sure the username is converted to lowercase, when creating the mailboxstring
This commit is contained in:
parent
02edb9ec96
commit
9b3dc190fe
@ -87,7 +87,7 @@
|
||||
return false;
|
||||
}
|
||||
|
||||
$mailboxString = $nameSpaces['others'][0]['name'] . $_username . (!empty($_folderName) ? $nameSpaces['others'][0]['delimiter'] . $_folderName : '');
|
||||
$mailboxString = $nameSpaces['others'][0]['name'] . strtolower($_username) . (!empty($_folderName) ? $nameSpaces['others'][0]['delimiter'] . $_folderName : '');
|
||||
|
||||
if($this->loginType == 'vmailmgr') {
|
||||
$mailboxString .= '@'.$this->domainName;
|
||||
|
Loading…
Reference in New Issue
Block a user