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/5403 | |
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/5403')
-rw-r--r-- | test/stderr/5403 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/stderr/5403 b/test/stderr/5403 index 292f09133..b91e254f3 100644 --- a/test/stderr/5403 +++ b/test/stderr/5403 @@ -73,11 +73,14 @@ MUNGED: ::1 will be omitted in what follows >>> SMTP<< 220 server ready >>> 127.0.0.1 in hosts_avoid_esmtp? no (option unset) >>> SMTP>> EHLO myhost.test.ex +>>> cmd buf flush 21 bytes >>> SMTP<< 250 OK >>> 127.0.0.1 in hosts_require_auth? no (option unset) >>> SMTP>> MAIL FROM:<CALLER@myhost.test.ex> +>>> cmd buf flush 37 bytes >>> SMTP<< 250 OK >>> SMTP>> RCPT TO:<verify@domain.com> +>>> cmd buf flush 29 bytes >>> SMTP<< 250 OK >>> holding verify callout open for cutthrough delivery >>> ----------- end verify ------------ |