From: Philip Hazel Date: Mon, 12 Dec 2005 12:05:08 +0000 (+0000) Subject: Previous patch for $reply_address was incomplete and wrong. This fixes X-Git-Tag: exim-4_61~100 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/6979240a55cd50ee3e002b5924b405b81fa947ff Previous patch for $reply_address was incomplete and wrong. This fixes it. --- 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;