From 80579a3ed059e7834467f84e0c8ed09be1dfdae4 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Mon, 7 Nov 2022 11:48:46 +0100 Subject: [PATCH] Resolve #637 --- plugins/change-password-poppassd/driver.php | 2 +- plugins/change-password-poppassd/index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/change-password-poppassd/driver.php b/plugins/change-password-poppassd/driver.php index d5661d5b8..6388f6474 100644 --- a/plugins/change-password-poppassd/driver.php +++ b/plugins/change-password-poppassd/driver.php @@ -59,7 +59,7 @@ class ChangePasswordPoppassdDriver extends \MailSo\Net\NetClient try { $this->sendRequestWithCheck('user', $oAccount->Login(), true); - $this->sendRequestWithCheck('pass', $sPassword, true); + $this->sendRequestWithCheck('pass', $sPrevPassword, true); } catch (\Throwable $oException) { diff --git a/plugins/change-password-poppassd/index.php b/plugins/change-password-poppassd/index.php index e801a4bd3..43fdc7647 100644 --- a/plugins/change-password-poppassd/index.php +++ b/plugins/change-password-poppassd/index.php @@ -6,7 +6,7 @@ class ChangePasswordPoppassdPlugin extends \RainLoop\Plugins\AbstractPlugin { const NAME = 'Change Password Poppassd', - VERSION = '2.16', + VERSION = '2.17', RELEASE = '2022-05-20', REQUIRED = '2.15.3', CATEGORY = 'Security',