From fc659a867896396b1c338ae890b10cdeea13e703 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 26 Feb 1998 20:18:08 +0000 Subject: Don't assume IMAP4rev0 servers will advertise AUTH=LOGIN. svn path=/trunk/; revision=1677 --- imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'imap.c') diff --git a/imap.c b/imap.c index 0924a822..ef4b9fc5 100644 --- a/imap.c +++ b/imap.c @@ -648,7 +648,7 @@ int imap_getauth(int sock, struct query *ctl, char *greeting) } #endif /* KERBEROS_V4 */ - if ((imap_version >= IMAP4) && (!strstr(capabilities, "AUTH=LOGIN"))) { + if ((imap_version >= IMAP4rev1) && (!strstr(capabilities, "AUTH=LOGIN"))) { error(0,-1, "Required LOGIN capability not supported by server"); return PS_AUTHFAIL; }; -- cgit v1.2.3