diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | imap.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -14,6 +14,7 @@ a Certifying Authority we recognize?). * Federico Schwindt's patch to fix broken SSL configuration. * Fixes to use fetchmail with IPv6 enabled on glibc without inet6-apps installed; thanks to Arkadiusz Mi¶kiewicz. +* Interpret IMAP PREAUTH tag correctly (from Joerg Dorchain). fetchmail-5.2.0 (Tue Nov 30 14:24:25 EST 1999), 18302 lines: * fetchmailconf now complains and exits gracefully when not run under X. @@ -107,6 +107,8 @@ int imap_ok(int sock, char *argbuf) } if (strstr(buf, "FLAGS")) seen = (strstr(buf, "SEEN") != (char *)NULL); + if (strstr(buf, "PREAUTH")) + preauth = TRUE; } while (tag[0] != '\0' && strncmp(buf, tag, strlen(tag))); |