diff --git a/plugins/change-password-poppassd/driver.php b/plugins/change-password-poppassd/driver.php index 4c4f0c0f6..e26ef34bc 100644 --- a/plugins/change-password-poppassd/driver.php +++ b/plugins/change-password-poppassd/driver.php @@ -17,10 +17,6 @@ class ChangePasswordPoppassdDriver extends \MailSo\Net\NetClient $this->oLogger = $oLogger; } - public static function isSupported() : bool - { - return true; - } public static function configMapping() : array { @@ -99,6 +95,16 @@ class ChangePasswordPoppassdDriver extends \MailSo\Net\NetClient $this->validateResponse(); } + public function supportsAuthType(string $sasl_type) : bool + { + return true; + } + + public static function isSupported() : bool + { + return true; + } + public function Logout() : void { if ($this->bIsLoggined) { diff --git a/plugins/change-password-poppassd/index.php b/plugins/change-password-poppassd/index.php index 0a152a42b..a66c13f79 100644 --- a/plugins/change-password-poppassd/index.php +++ b/plugins/change-password-poppassd/index.php @@ -6,9 +6,9 @@ class ChangePasswordPoppassdPlugin extends \RainLoop\Plugins\AbstractPlugin { const NAME = 'Change Password Poppassd', - VERSION = '2.18', - RELEASE = '2022-12-08', - REQUIRED = '2.23.0', + VERSION = '2.19', + RELEASE = '2023-06-05', + REQUIRED = '2.28.0', CATEGORY = 'Security', DESCRIPTION = 'Extension to allow users to change their passwords through Poppassd';