mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-23 06:18:03 +08:00
Add missing {PLAIN-MD5} before md5 hash
This commit is contained in:
parent
861da1469b
commit
ccc8147f96
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ class ChangePasswordPostfixAdminDriver implements \RainLoop\Providers\ChangePass
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'md5':
|
case 'md5':
|
||||||
$sResult = md5($sPassword);
|
$sResult = '{PLAIN-MD5}' . md5($sPassword);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'system':
|
case 'system':
|
||||||
|
|
Loading…
Reference in a new issue