summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2014-08-02 11:26:11 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2014-08-02 12:33:54 +0100
commit8864c2c44f08ddca092d70135843fc69cd95f178 (patch)
tree1fbb99aac70030994e08b6c2c6d5bd54cfbf01cb
parent3914a2b49c99581097e96e00430141613e99fb0d (diff)
Fix broken EXPERIMENTAL_DSN compile
-rw-r--r--src/src/deliver.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/src/deliver.c b/src/src/deliver.c
index b0b4601dc..87b54d88e 100644
--- a/src/src/deliver.c
+++ b/src/src/deliver.c
@@ -6511,8 +6511,8 @@ if (addr_senddsn != NULL)
"Content-type: text/plain; charset=us-ascii\n\n"
"This message was created automatically by mail delivery software.\n"
- " ----- The following addresses had successful delivery notifications -----\n"
- qualify_domain_sender, sender_addres, boundaryStrs, boundarySt);
+ " ----- The following addresses had successful delivery notifications -----\n",
+ qualify_domain_sender, sender_address, boundaryStr, boundaryStr);
addr_dsntmp = addr_senddsn;
while(addr_dsntmp)
@@ -6944,8 +6944,9 @@ wording. */
for (addr = handled_addr; addr; addr = addr->next)
{
fprintf(f, "Action: failed\n"
- "Final-Recipient: rfc822;%s\n", addr->address
- "Status: 5.0.0\n");
+ "Final-Recipient: rfc822;%s\n"
+ "Status: 5.0.0\n",
+ addr->address);
if (addr->host_used && addr->host_used->name)
fprintf(f, "Remote-MTA: dns; %s\nDiagnostic-Code: smtp; %d\n",
addr->host_used->name, addr->basic_errno);