diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-08-07 15:14:59 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-08-07 16:57:19 +0100 |
commit | 58fc5fb2eec65bc0b1c7f5e571e3c534cf008b88 (patch) | |
tree | 18ad0774c0a74f43b30872fcc791bf14ed10328f /test/stderr/0143 | |
parent | dea4897244b409bf91dc60a7e5e4b3d06f123dd6 (diff) |
CHUNKING: fix transmit with long headers
When the buffer used for SMTP commands and message headers filled to flush
point, protocol sequencing was wrong.
Diffstat (limited to 'test/stderr/0143')
-rw-r--r-- | test/stderr/0143 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/stderr/0143 b/test/stderr/0143 index e0fe9dc93..06370ba40 100644 --- a/test/stderr/0143 +++ b/test/stderr/0143 @@ -20,16 +20,20 @@ delivering 10HmaX-0005vi-00 to 127.0.0.1 [127.0.0.1] (userx@domain.com) Connecting to 127.0.0.1 [127.0.0.1]:1224 from ip4.ip4.ip4.ip4 ... connected SMTP<< 220 ESMTP SMTP>> EHLO myhost.test.ex +cmd buf flush 21 bytes SMTP<< 250-OK 250-HELP 250 AUTH LOGIN not using PIPELINING not using DSN SMTP>> MAIL FROM:<CALLER@myhost.test.ex> +cmd buf flush 37 bytes SMTP<< 250 Sender OK SMTP>> RCPT TO:<userx@domain.com> +cmd buf flush 28 bytes SMTP<< 250 Recipient OK SMTP>> DATA +cmd buf flush 6 bytes SMTP<< 354 Send data SMTP>> writing message and terminating "." writing data block fd=dddd size=sss timeout=300 @@ -39,6 +43,7 @@ transport_check_waiting entered sequence=1 local_max=500 global_max=-1 no messages waiting for 127.0.0.1 SMTP>> QUIT +cmd buf flush 6 bytes SMTP(close)>> Leaving my_smtp transport LOG: MAIN |