From: mmj Date: Sat, 29 May 2004 14:30:20 +0000 (+1000) Subject: it's +bounces-help not -bounces+help X-Git-Tag: RELEASE_1_0_0~199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=658b64eafde3e669ce37776555dbdea811fca228;p=thirdparty%2Fmlmmj.git it's +bounces-help not -bounces+help --- diff --git a/ChangeLog b/ChangeLog index c2db26b2..910af919 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/VERSION b/VERSION index ece0cfe8..cb0c939a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.2-RC +0.5.2 diff --git a/src/send_help.c b/src/send_help.c index 34bc4bfd..dce9526d 100644 --- a/src/send_help.c +++ b/src/send_help.c @@ -60,9 +60,9 @@ void send_help(const char *listdir, const char *emailaddr, 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);