diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-15 00:24:35 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-15 00:24:35 +0000 |
commit | 1f9b0df2d1edad6660fec1dba6985f55c75218c8 (patch) | |
tree | 78d19e730f09ff066ae68543ef85e5e70c0170dc | |
parent | 9f3e7d2977f69ca007956f94d6e0f54229e85d88 (diff) | |
download | fetchmail-1f9b0df2d1edad6660fec1dba6985f55c75218c8.tar.gz fetchmail-1f9b0df2d1edad6660fec1dba6985f55c75218c8.tar.bz2 fetchmail-1f9b0df2d1edad6660fec1dba6985f55c75218c8.zip |
Handle Apparently-To correctly.
svn path=/trunk/; revision=541
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | driver.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ Release Notes: +fetchmail-2.0 (): + +* Fix typo in setitimer call setup that caused obscure bugs under FreeBSD. +* Handle Apparently-To. + pl 1.9.9 (Mon Nov 11 10:40:14 EST 1996): * Accept Resent-From & Apparently-From a la RFC822. * Include file fixes for Solaris 2.5 and FreeBSD 2.2. @@ -345,7 +345,7 @@ struct query *ctl; /* query control record */ fromhdr = bufp; else if (!strncasecmp("To:", bufp, 3)) tohdr = bufp; - else if (!strncasecmp("To:", bufp, 3)) + else if (!strncasecmp("Apparently-To:", bufp, 14)) tohdr = bufp; else if (!strncasecmp("Cc:", bufp, 3)) cchdr = bufp; |