diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2019-10-19 22:25:27 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-10-19 22:25:27 +0100 |
commit | c5040dfdb523ce2a14efbdfa0d3eb69d3afef65a (patch) | |
tree | 2b8d705fbefeaf5a02e30212a962f5594389f247 /test/scripts | |
parent | d48326c00b228279a957da7f58b48a55f4b7823b (diff) |
CHUNKING: fix all-RCPTs-rejected, non-pipelined. Bug 2454
Diffstat (limited to 'test/scripts')
-rw-r--r-- | test/scripts/0000-Basic/0904 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/scripts/0000-Basic/0904 b/test/scripts/0000-Basic/0904 index 2157e61a8..fa72256c0 100644 --- a/test/scripts/0000-Basic/0904 +++ b/test/scripts/0000-Basic/0904 @@ -146,6 +146,31 @@ QUIT **** # # +# Server rejects RCPT. Client should not proceed to BDAT. +server PORT_S +220 Greetings +EHLO +250-Hello there +250 CHUNKING +MAIL FROM +250 OK +RCPT TO +550 sorry, no +QUIT +**** +sudo exim -odf -bS +EHLO test +MAIL FROM:<sender@source.dom> +RCPT TO:<ebad@test.ex> +DATA +Subject: foo + +data +. +QUIT +**** +# +# ################################################### # # Pipelined cases |