diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | pop3.c | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -8,6 +8,9 @@ * Include James Stone's moldremover.py script. * Enable .fetchmailrc permissions checking under Cygwin. * Nalin Dahyabai's fix for POP3 strong authentication. +* Revised Nalin Dahyabai's fix for POP3 strong authentication (Matthias + Andree, the original version would go into an infinite loop when CAPA + failed; found by David Greaves.) * HOME_ETC patch for PLD Linux. * Sunil Shetye's fix for SSL configuration. * Simon Josefsson's patch for GSS library support. @@ -361,8 +361,7 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting) * These authentication methods are blessed by RFC1734, * describing the POP3 AUTHentication command. */ - if ((ctl->use_ssl != FLAG_FALSE) || - (ctl->server.authenticate == A_ANY) || + if ((ctl->server.authenticate == A_ANY) || (ctl->server.authenticate == A_GSSAPI) || (ctl->server.authenticate == A_KERBEROS_V4) || (ctl->server.authenticate == A_OTP) || |