diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-01-23 03:53:06 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-01-23 03:53:06 +0000 |
commit | c4864c2ee620fb6ab7c62151cbb181285a91efd3 (patch) | |
tree | 1539dcdc08fcb39a9410cdb024cfb2413743cf1e | |
parent | 6f88ce2d21b50e2ec4da49cbdc7eb85023249a6d (diff) | |
download | fetchmail-c4864c2ee620fb6ab7c62151cbb181285a91efd3.tar.gz fetchmail-c4864c2ee620fb6ab7c62151cbb181285a91efd3.tar.bz2 fetchmail-c4864c2ee620fb6ab7c62151cbb181285a91efd3.zip |
Discard X-Mozilla-Status lines.
svn path=/trunk/; revision=1604
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | driver.c | 3 | ||||
-rw-r--r-- | fetchmail.man | 16 |
4 files changed, 13 insertions, 11 deletions
diff --git a/Makefile.in b/Makefile.in index cae12205..84783d5f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,7 +3,7 @@ # If you're running QNX, we can't assume a working autoconf. # So just uncomment all the lines marked QNX. -VERS=4.4.0 +VERS=4.3.6 # Ultrix 2.2 make doesn't expand the value of VPATH. srcdir = @srcdir@ @@ -33,8 +33,9 @@ fetchmail-4.4.0 () logging directory. * Close pipe to MDA when we get a nonresponse timeout. This should prevent MDA zombies from piling up when we have errors. +* Treat Netscape's "X-Mozilla-Status" lines like "Status:" lines. -There are 271 people on fetchmail-friends and 119 on fetchmail-announce. +There are 269 people on fetchmail-friends and 123 on fetchmail-announce. fetchmail-4.3.5 (Mon Dec 15 06:07:08 EST 1997) * Added Kent Robotti's fetchsetup configuration script. @@ -687,7 +687,8 @@ int num; /* index of message */ * unconditionally. Nonempty ones get chucked if the user * turns on the dropstatus flag. */ - if (!strncasecmp(line, "Status:", 7)) + if (!strncasecmp(line, "Status:", 7) + || !strncasecmp(line, "X-Mozilla-Status:", 7)) { char *cp; diff --git a/fetchmail.man b/fetchmail.man index 5a749ef3..5f31a017 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -888,7 +888,7 @@ pass8bits \& T{ Force BODY=8BITMIME to ESMTP listener T} dropstatus \& T{ -Strip Status lines out of incoming mail +Strip Status and X-Mozilla-Status lines out of incoming mail T} no keep -K T{ Delete seen messages from server (default) @@ -1065,13 +1065,13 @@ is forced to declare BODY=8BITMIME to any ESMTP-capable listener. If the listener is 8-bit-clean (as all the major ones now are) the right thing will probably result. .PP -The `dropstatus' option controls whether nonempty Status lines are -retained in fetched mail (the default) or discarded. Retaining them -allows your MUA to see what messages (if any) were marked seen on the -client. On the other hand, it can confuse some new-mail notifiers, -which assume that anything with a Status line in it has been seen. -(Note: the empty Status lines inserted by some buggy POP servers are -unconditionally discarded.) +The `dropstatus' option controls whether nonempty Status and +X-Mozilla-Status lines are retained in fetched mail (the default) or +discarded. Retaining them allows your MUA to see what messages (if +any) were marked seen on the server. On the other hand, it can +confuse some new-mail notifiers, which assume that anything with a +Status line in it has been seen. (Note: the empty Status lines +inserted by some buggy POP servers are unconditionally discarded.) .PP .SS Miscellaneous Run Control Options The words `here' and `there' have useful English-like |