mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
try "PLAIN" first, in case IMAP wrongly reports some digest, it does not (correctly) implement
This commit is contained in:
parent
d41bbf4a4b
commit
9cc0eaccd4
@ -98,6 +98,11 @@ class Sieve extends Horde\ManageSieve
|
|||||||
//'logger' => new \admin_mail_logger('/tmp/sieve.log'),
|
//'logger' => new \admin_mail_logger('/tmp/sieve.log'),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
// try "PLAIN" first, in case IMAP wrongly reports some digest, it does not (correctly) implement
|
||||||
|
if (self::$supportedAuthMethods[0] !== self::AUTH_PLAIN)
|
||||||
|
{
|
||||||
|
array_unshift(self::$supportedAuthMethods, self::AUTH_PLAIN);
|
||||||
|
}
|
||||||
parent::__construct($params);
|
parent::__construct($params);
|
||||||
|
|
||||||
$this->displayCharset = Translation::charset();
|
$this->displayCharset = Translation::charset();
|
||||||
|
Loading…
Reference in New Issue
Block a user