diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | imap.c | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -18,6 +18,9 @@ Release Notes: ------------------------------------------------------------------------------ +fetchmail-4.4.0 (): +* Relax the LOGIN capability check in IMAP. + fetchmail-4.3.8 (Tue Feb 24 15:47:13 EST 1998): * Documentation cleanup. * -S is back to setting smtphost all the time; net-security option is now -T. @@ -648,7 +648,8 @@ int imap_getauth(int sock, struct query *ctl, char *greeting) } #endif /* KERBEROS_V4 */ - if ((imap_version >= IMAP4rev1) && (!strstr(capabilities, "AUTH=LOGIN"))) { + /* this handles either AUTH=LOGIN or AUTH-LOGIN */ + if ((imap_version >= IMAP4rev1) && (!strstr(capabilities, "LOGIN"))) { error(0,-1, "Required LOGIN capability not supported by server"); return PS_AUTHFAIL; }; |