From 243029b31f1c0a086b00a285f875088992e32d0a Mon Sep 17 00:00:00 2001 From: pfelt Date: Tue, 23 Oct 2007 01:36:26 +0000 Subject: [PATCH] -- fix a missing space causing pipelined data to be incorrectly formatted --- src/agents/smtp/smtpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/smtp/smtpd.c b/src/agents/smtp/smtpd.c index c69da9f..98c9efe 100644 --- a/src/agents/smtp/smtpd.c +++ b/src/agents/smtp/smtpd.c @@ -1796,7 +1796,7 @@ DeliverSMTPMessage (ConnectionStruct * Client, unsigned char *Sender, } } else if (Recips[0].Flags & DSN_HEADER) { - if (ConnWrite(Client->remotesmtp.conn, "RET=HDRS", 9) < 1) { + if (ConnWrite(Client->remotesmtp.conn, " RET=HDRS", 9) < 1) { DELIVER_ERROR (DELIVER_TRY_LATER); } }