Bugfix: account sSmtpPassword was wrong

This commit is contained in:
the-djmaze 2023-12-03 23:09:46 +01:00
parent c61c3c6ce7
commit 089c229213

View file

@ -76,7 +76,7 @@ abstract class Account implements \JsonSerializable
public function SetSmtpPassword(string $sPassword) : void
{
$this->sSmtpLogin = $sPassword;
$this->sSmtpPassword = $sPassword;
}
public function SetProxyAuthUser(string $sProxyAuthUser) : void