aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-03-02 15:09:35 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-03-02 15:09:35 +0000
commitc59ed64b4fb85c56e7afb1a296d6ae792bfc1a6b (patch)
treee6fa8b88ddb56776ccd6897cfde1c3607eb35301 /imap.c
parent6468431048a669d99c003b940474ec60a833afe1 (diff)
downloadfetchmail-c59ed64b4fb85c56e7afb1a296d6ae792bfc1a6b.tar.gz
fetchmail-c59ed64b4fb85c56e7afb1a296d6ae792bfc1a6b.tar.bz2
fetchmail-c59ed64b4fb85c56e7afb1a296d6ae792bfc1a6b.zip
Relax the LOGIN capability test.
svn path=/trunk/; revision=1679
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/imap.c b/imap.c
index af605789..66f42c8a 100644
--- a/imap.c
+++ b/imap.c
@@ -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;
};