diff options
author | Michael Haardt <michael@moria.de> | 2009-02-04 11:31:13 +0000 |
---|---|---|
committer | Michael Haardt <michael@moria.de> | 2009-02-04 11:31:13 +0000 |
commit | 5f71124def96a68fc6b11629f701eb8dcfbedd9e (patch) | |
tree | 36dd55829f62f5106c6ae0a2cbda404371caeafd /src | |
parent | 513afc6abc5f3983dee8a8bad6aae367e6c62d84 (diff) |
Add owner-* parameter as of RFC 5436.
Diffstat (limited to 'src')
-rw-r--r-- | src/src/sieve.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/sieve.c b/src/src/sieve.c index f1b7cd1f7..bbbabdfd0 100644 --- a/src/src/sieve.c +++ b/src/src/sieve.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/sieve.c,v 1.36 2008/12/18 13:13:53 michael Exp $ */ +/* $Cambridge: exim/src/src/sieve.c,v 1.37 2009/02/04 11:31:13 michael Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -3070,7 +3070,7 @@ while (*filter->pc) f = fdopen(fd, "wb"); fprintf(f,"From: %s\n",from.length==-1 ? expand_string("$local_part_prefix$local_part$local_part_suffix@$domain") : from.character); for (p=recipient; p; p=p->next) fprintf(f,"To: %s\n",p->text); - fprintf(f,"Auto-Submitted: auto-notified\n"); + fprintf(f,"Auto-Submitted: auto-notified; %s\n",filter->enotify_mailto_owner); if (header.length>0) fprintf(f,"%s",header.character); if (message.length==-1) { |