aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-09-23 20:42:52 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-09-23 20:42:52 +0000
commit64fd771b149e643658983d30384fdd8e8d3c06d6 (patch)
tree0bc86fd00c6328943ecec3aea7a8f20cd2c7ebb6 /driver.c
parent9b6b11cf6cc3e0d3408aad96abaec98efb685122 (diff)
downloadfetchmail-64fd771b149e643658983d30384fdd8e8d3c06d6.tar.gz
fetchmail-64fd771b149e643658983d30384fdd8e8d3c06d6.tar.bz2
fetchmail-64fd771b149e643658983d30384fdd8e8d3c06d6.zip
Avoid spurious matches in the Received line.
svn path=/trunk/; revision=1393
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/driver.c b/driver.c
index 3447c7ff..592272b1 100644
--- a/driver.c
+++ b/driver.c
@@ -303,7 +303,7 @@ struct idlist **xmit_names; /* list of recipient names parsed out */
static char *parse_received(struct query *ctl, char *bufp)
/* try to extract real addressee from the Received line */
{
- char *ok;
+ char *ok = (char *)NULL;
static char rbuf[HOSTLEN + USERNAMELEN + 4];
/*
@@ -314,9 +314,7 @@ static char *parse_received(struct query *ctl, char *bufp)
* address in the Received line. Sendmail itself only
* does this when the mail has a single recipient.
*/
- if ((ok = strstr(bufp, "by ")) == (char *)NULL)
- ok = (char *)NULL;
- else
+ if ((ok = strstr(bufp, "by ")) && isspace(ok[-1]))
{
char *sp, *tp;
@@ -335,10 +333,8 @@ static char *parse_received(struct query *ctl, char *bufp)
*/
if (!is_host_alias(rbuf, ctl))
ok = (char *)NULL;
- else if ((ok = strstr(sp, "for ")) != 0)
+ else if ((ok = strstr(sp, "for ")) && isspace(ok[-1]))
{
- char *sp, *tp;
-
tp = rbuf;
sp = ok + 4;
if (*sp == '<')