mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +03:00
Resolve #1151
This commit is contained in:
parent
14edb6c18e
commit
15eaf18ec3
2 changed files with 13 additions and 7 deletions
|
|
@ -17,10 +17,6 @@ class ChangePasswordPoppassdDriver extends \MailSo\Net\NetClient
|
||||||
$this->oLogger = $oLogger;
|
$this->oLogger = $oLogger;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function isSupported() : bool
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function configMapping() : array
|
public static function configMapping() : array
|
||||||
{
|
{
|
||||||
|
|
@ -99,6 +95,16 @@ class ChangePasswordPoppassdDriver extends \MailSo\Net\NetClient
|
||||||
$this->validateResponse();
|
$this->validateResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function supportsAuthType(string $sasl_type) : bool
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function isSupported() : bool
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public function Logout() : void
|
public function Logout() : void
|
||||||
{
|
{
|
||||||
if ($this->bIsLoggined) {
|
if ($this->bIsLoggined) {
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,9 @@ class ChangePasswordPoppassdPlugin extends \RainLoop\Plugins\AbstractPlugin
|
||||||
{
|
{
|
||||||
const
|
const
|
||||||
NAME = 'Change Password Poppassd',
|
NAME = 'Change Password Poppassd',
|
||||||
VERSION = '2.18',
|
VERSION = '2.19',
|
||||||
RELEASE = '2022-12-08',
|
RELEASE = '2023-06-05',
|
||||||
REQUIRED = '2.23.0',
|
REQUIRED = '2.28.0',
|
||||||
CATEGORY = 'Security',
|
CATEGORY = 'Security',
|
||||||
DESCRIPTION = 'Extension to allow users to change their passwords through Poppassd';
|
DESCRIPTION = 'Extension to allow users to change their passwords through Poppassd';
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue