since we seem to have major problems authenticating via DIGEST-MD5 and CRAM-MD5 in SIEVE, we skip MD5-METHODS for now

This commit is contained in:
Klaus Leithoff 2014-08-26 07:48:34 +00:00
parent 90dc8143cf
commit 1e09d20724

View File

@ -96,10 +96,12 @@ class emailadmin_sieve extends Net_Sieve
if (!is_null($_icServer))
{
$_icServer->supportedAuthMethods = array('PLAIN' , 'LOGIN');
$_icServer->supportedSASLAuthMethods=array();
}
else
{
$this->supportedAuthMethods = array('PLAIN' , 'LOGIN');
$this->supportedSASLAuthMethods=array();
}
$this->displayCharset = translation::charset();