Merge pull request #1310 from valdur55/master

Add missing {PLAIN-MD5} before md5 hash
This commit is contained in:
RainLoop Team 2017-01-10 17:54:12 +03:00 committed by GitHub
commit 086cf7cadc

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':