+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
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);