Add missing {PLAIN-MD5} before md5 hash

This commit is contained in:
Valdur Kana 2017-01-10 16:34:46 +02:00
parent 861da1469b
commit ccc8147f96

View file

@ -273,7 +273,7 @@ class ChangePasswordPostfixAdminDriver implements \RainLoop\Providers\ChangePass
break;
case 'md5':
$sResult = md5($sPassword);
$sResult = '{PLAIN-MD5}' . md5($sPassword);
break;
case 'system':