From 1f9b0df2d1edad6660fec1dba6985f55c75218c8 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 15 Nov 1996 00:24:35 +0000 Subject: Handle Apparently-To correctly. svn path=/trunk/; revision=541 --- NEWS | 5 +++++ driver.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 60b7619c..7a1248c0 100644 --- a/NEWS +++ b/NEWS @@ -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. diff --git a/driver.c b/driver.c index fde38a46..356a3edb 100644 --- a/driver.c +++ b/driver.c @@ -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; -- cgit v1.2.3