diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-05-22 19:16:07 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-05-22 19:16:07 +0000 |
commit | 2ce1259d0e69bcf4113ea8f03d94729d262d37e1 (patch) | |
tree | 3f29bf12440654f59ca64334797e99de0c9841a8 | |
parent | bade0c996acb216b7b2438266bf55b46b198a4cb (diff) | |
download | fetchmail-2ce1259d0e69bcf4113ea8f03d94729d262d37e1.tar.gz fetchmail-2ce1259d0e69bcf4113ea8f03d94729d262d37e1.tar.bz2 fetchmail-2ce1259d0e69bcf4113ea8f03d94729d262d37e1.zip |
Sunil Shetye's fix.
svn path=/trunk/; revision=3328
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | imap.c | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -2,6 +2,10 @@ (The `lines' figures total .c, .h, .l, and .y files under version control.) +* Attempted fix for Harry McGavran's problems with the Kerberos V build. +* Added fetchmailnochda.pl to the contrib directory. +* Sunil Shetye's patch for the seen count on IMAP. + fetchmail-5.8.4 (Mon May 21 15:08:03 EDT 2001), 20636 lines: * SSL certificate options from Thomas Moestl <tmoestl@gmx.net>. @@ -565,7 +565,8 @@ static int imap_getrange(int sock, } } while (tag[0] != '\0' && strncmp(buf, tag, strlen(tag))); - } + } else + unseen = -1; *newp = unseen; expunged = 0; |