mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 00:08:18 +08:00
Merge pull request #1310 from valdur55/master
Add missing {PLAIN-MD5} before md5 hash
This commit is contained in:
commit
086cf7cadc
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ class ChangePasswordPostfixAdminDriver implements \RainLoop\Providers\ChangePass
|
|||
break;
|
||||
|
||||
case 'md5':
|
||||
$sResult = md5($sPassword);
|
||||
$sResult = '{PLAIN-MD5}' . md5($sPassword);
|
||||
break;
|
||||
|
||||
case 'system':
|
||||
|
|
Loading…
Reference in a new issue