changeset 130:2ac5c3862982

it's +bounces-help not -bounces+help
author mmj
date Sun, 30 May 2004 00:30:20 +1000
parents f72d7b29f576
children c0a4f5ab1357
files ChangeLog VERSION src/send_help.c
diffstat 3 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun May 30 00:27:53 2004 +1000
+++ b/ChangeLog	Sun May 30 00:30:20 2004 +1000
@@ -1,3 +1,4 @@
+0.5.2
  o Discard mails that doesn't have one and only one From: address. Discard
    here means moving them to queue/discard
  o Make sure we retrieve info from all headers matching the token we want
--- a/VERSION	Sun May 30 00:27:53 2004 +1000
+++ b/VERSION	Sun May 30 00:30:20 2004 +1000
@@ -1,1 +1,1 @@
-0.5.2-RC
+0.5.2
--- a/src/send_help.c	Sun May 30 00:27:53 2004 +1000
+++ b/src/send_help.c	Sun May 30 00:30:20 2004 +1000
@@ -60,9 +60,9 @@
 	helpaddr = malloc(len);
 	snprintf(helpaddr, len, "%s+help@%s", listname, listfqdn);
 
-	len += strlen("-bounces");
+	len += strlen("+bounces");
 	fromaddr = malloc(len);
-	snprintf(fromaddr, len, "%s-bounces+help@%s", listname, listfqdn);
+	snprintf(fromaddr, len, "%s+bounces-help@%s", listname, listfqdn);
 
 	fromstr = headerstr("From: ", helpaddr);
 	fputs(fromstr, queuefile);