From 089c229213206572127a3ccd87dd3e5874d2c12d Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Sun, 3 Dec 2023 23:09:46 +0100 Subject: [PATCH] Bugfix: account sSmtpPassword was wrong --- snappymail/v/0.0.0/app/libraries/RainLoop/Model/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snappymail/v/0.0.0/app/libraries/RainLoop/Model/Account.php b/snappymail/v/0.0.0/app/libraries/RainLoop/Model/Account.php index da028720a..38b67814f 100644 --- a/snappymail/v/0.0.0/app/libraries/RainLoop/Model/Account.php +++ b/snappymail/v/0.0.0/app/libraries/RainLoop/Model/Account.php @@ -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