diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-10-04 01:23:05 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-10-04 01:23:05 +0000 |
commit | 5b05b5c1bfb2962e9f00f6c83940a695b0725be1 (patch) | |
tree | 29e7c96bab6ab001097ff9fe1424b9f60478675c | |
parent | bc5eecb75b5cd8827b5da28929e96981b9d7f1ed (diff) | |
download | fetchmail-5b05b5c1bfb2962e9f00f6c83940a695b0725be1.tar.gz fetchmail-5b05b5c1bfb2962e9f00f6c83940a695b0725be1.tar.bz2 fetchmail-5b05b5c1bfb2962e9f00f6c83940a695b0725be1.zip |
Fix groupnames bug.
svn path=/trunk/; revision=1472
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | rfc822.c | 8 |
2 files changed, 7 insertions, 3 deletions
@@ -18,6 +18,8 @@ fetchmail-4.3.0 () * Added code to have %F in an MDA string expand to the From address * Added code to prevent buffer spamming via the MDA %T/%s escape. * Luca Olivetti's --qvirtual option patch for qmail users. +* Fixed a bug in the code that was supposed to suppress expansion of RFC822 + groupnames. (Thanks to Santiago Vila Doncel for pointing this.) There are 286 people on the fetchmail-friends list. @@ -25,7 +25,7 @@ char *reply_hack(buf, host) char *buf; /* header to be hacked */ const char *host; /* server hostname */ { - char *from, *cp; + char *from, *cp, last_nws = '\0'; int parendepth, state, has_bare_name_part, has_host_part; int addresscount = 1; @@ -72,6 +72,8 @@ const char *host; /* server hostname */ break; case 1: /* we've seen the colon, we're looking for addresses */ + if (!isspace(*from)) + last_nws = *from; if (*from == '<') state = 3; else if (*from == '@') @@ -79,14 +81,14 @@ const char *host; /* server hostname */ else if (*from == '"') state = 2; /* - * Not expanding on from[-1] == ';' deals with groupnames, + * Not expanding on last non-WS == ';' deals with groupnames, * an obscure misfeature described in sections * 6.1, 6.2.6, and A.1.5 of the RFC822 standard. */ else if ((*from == ',' || HEADER_END(from) || from[1] == '(') && has_bare_name_part && !has_host_part - && from[-1] != ';') + && last_nws != ';') { int hostlen; |