as we experience massive problems regarding DIGEST-MD5 and CRAM-MD5 authentication in Sieve, we remove them from the supportedAuthMethod list

This commit is contained in:
Klaus Leithoff 2012-03-27 14:14:26 +00:00
parent 5417fca5b9
commit 781abb9764

View File

@ -124,11 +124,10 @@ class Net_Sieve
* The auth methods this class support
* @var array
*/
var $supportedAuthMethods=array('DIGEST-MD5', 'CRAM-MD5', 'PLAIN' , 'LOGIN');
//var $supportedAuthMethods=array('DIGEST-MD5', 'CRAM-MD5', 'PLAIN' , 'LOGIN');
//if you have problems using DIGEST-MD5 authentication please comment the line above and uncomment the following line
//var $supportedAuthMethods=array( 'CRAM-MD5', 'PLAIN' , 'LOGIN');
//var $supportedAuthMethods=array( 'PLAIN' , 'LOGIN');
var $supportedAuthMethods=array( 'PLAIN' , 'LOGIN');
/**
* The auth methods this class support