mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 13:09:21 +03:00
ChangePassword extensions use \SnappyMail\SensitiveString
This commit is contained in:
parent
9427b36633
commit
8c033f53fa
13 changed files with 70 additions and 56 deletions
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
use MailSo\Net\ConnectSettings;
|
||||
use SnappyMail\SensitiveString;
|
||||
|
||||
class ChangePasswordHMailServerDriver
|
||||
{
|
||||
|
|
@ -37,7 +38,7 @@ class ChangePasswordHMailServerDriver
|
|||
);
|
||||
}
|
||||
|
||||
public function ChangePassword(\RainLoop\Model\Account $oAccount, string $sPrevPassword, string $sNewPassword) : bool
|
||||
public function ChangePassword(\RainLoop\Model\Account $oAccount, SensitiveString $oPrevPassword, SensitiveString $oNewPassword) : bool
|
||||
{
|
||||
if (!\RainLoop\Plugins\Helper::ValidateWildcardValues($oAccount->Email(), $this->oConfig->Get('plugin', 'hmailserver_emails', ''))) {
|
||||
return false;
|
||||
|
|
@ -62,7 +63,7 @@ class ChangePasswordHMailServerDriver
|
|||
if ($oHmailDomain) {
|
||||
$oHmailAccount = $oHmailDomain->Accounts->ItemByAddress($sEmail);
|
||||
if ($oHmailAccount) {
|
||||
$oHmailAccount->Password = $sNewPassword;
|
||||
$oHmailAccount->Password = (string) $oNewPassword;
|
||||
$oHmailAccount->Save();
|
||||
$bResult = true;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue