diff options
author | Todd Lyons <tlyons@ivenue.com> | 2012-06-04 06:03:18 -0700 |
---|---|---|
committer | Todd Lyons <tlyons@ivenue.com> | 2012-06-04 06:07:30 -0700 |
commit | 2668ed87c9346d474341ec4ee654f0bab9a2e68f (patch) | |
tree | 9e28daa24c246d8e7925b332033917cf930afe1a /test/scripts | |
parent | d27f98fe90545fc2e794afc0b3b2494dccc65183 (diff) |
Test for proper parsing of optional MAIL FROM args.
Diffstat (limited to 'test/scripts')
-rw-r--r-- | test/scripts/0000-Basic/0566 | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/test/scripts/0000-Basic/0566 b/test/scripts/0000-Basic/0566 new file mode 100644 index 000000000..c4dc0d8aa --- /dev/null +++ b/test/scripts/0000-Basic/0566 @@ -0,0 +1,73 @@ +# Optional MAIL FROM args processing +# +# SIZE alone +exim -bs +ehlo Testing +mail from:<x@y> SIZE=1000 +rcpt to:<userx@test.ex> +quit +**** +# BODY alone +exim -bs +ehlo Testing +mail from:<x@y> BODY=7BIT +rcpt to:<userx@test.ex> +quit +**** +# SIZE then BODY +exim -bs +ehlo Testing +mail from:<x@y> SIZE=1000 BODY=7BIT +rcpt to:<userx@test.ex> +quit +**** +# BODY then SIZE +exim -bs +ehlo Testing +mail from:<x@y> BODY=7BIT SIZE=1000 +rcpt to:<userx@test.ex> +quit +**** +# AUTH then BODY then SIZE +exim -bs +ehlo Testing +mail from:<x@y> AUTH=x@y BODY=7BIT SIZE=1000 +rcpt to:<userx@test.ex> +quit +**** +# BODY then AUTH then SIZE +exim -bs +ehlo Testing +mail from:<x@y> BODY=7BIT AUTH=x@y SIZE=1000 +rcpt to:<userx@test.ex> +quit +**** +# SIZE then BODY then AUTH +exim -bs +ehlo Testing +mail from:<x@y> SIZE=1000 BODY=7BIT AUTH=x@y +rcpt to:<userx@test.ex> +quit +**** +# SIZE then BODY then SIZE +exim -bs +ehlo Testing +mail from:<x@y> SIZE=1000 BODY=7BIT SIZE=1200 +rcpt to:<userx@test.ex> +quit +**** +# (over)SIZE then BODY +exim -bs +ehlo Testing +mail from:<x@y> SIZE=40004 BODY=8BITMIME +rcpt to:<userx@test.ex> +quit +**** +# BODY then (over)SIZE +exim -bs +ehlo Testing +mail from:<x@y> BODY=8BITMIME SIZE=40004 +rcpt to:<userx@test.ex> +quit +**** +no_msglog_check |