mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-12 08:58:30 +01:00
bugfix: using strtolower for the loginname/mailboxname breaks CaseSensitive Authentication
This commit is contained in:
parent
b0cd70aa89
commit
26cea9e1bd
@ -457,7 +457,8 @@ class emailadmin_smtp_ldap extends defaultsmtp
|
||||
$mbox .= '@'.$domain;
|
||||
break;
|
||||
}
|
||||
$mbox = strtolower($mbox);
|
||||
//strtolower breaks CaseSensitive Authentication
|
||||
//$mbox = strtolower($mbox);
|
||||
|
||||
return $mbox;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user