diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2005-12-12 12:05:08 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2005-12-12 12:05:08 +0000 |
commit | 6979240a55cd50ee3e002b5924b405b81fa947ff (patch) | |
tree | 23c564009afa2dab9f69b726646583a09992650e /src | |
parent | 911f6fde86bcc031ffd71f05651348c03622a6a0 (diff) |
Previous patch for $reply_address was incomplete and wrong. This fixes
it.
Diffstat (limited to 'src')
-rw-r--r-- | src/src/expand.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/src/expand.c b/src/src/expand.c index 8fdc2de09..8523ace21 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/expand.c,v 1.49 2005/12/12 11:02:44 ph10 Exp $ */ +/* $Cambridge: exim/src/src/expand.c,v 1.50 2005/12/12 12:05:08 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -1428,6 +1428,7 @@ while (last > first) case vtype_reply: /* Get reply address */ s = find_header(US"reply-to:", exists_only, newsize, TRUE, headers_charset); + if (s != NULL) while (isspace(*s)) s++; if (s == NULL || *s == 0) { *newsize = 0; /* For the *s==0 case */ @@ -1438,6 +1439,8 @@ while (last > first) uschar *t; while (isspace(*s)) s++; for (t = s; *t != 0; t++) if (*t == '\n') *t = ' '; + while (t > s && isspace(t[-1])) t--; + *t = 0; } return (s == NULL)? US"" : s; |