perl version oddity
[exim.git] / test / scripts / 0000-Basic / 0121
index 4bcb99b4767584344ad3aa5c1eb111044259b5e3..ce16b584aea5489dfdbb1f0bb3af48813e6b17e7 100644 (file)
@@ -1,11 +1,15 @@
-# Sender verification (envelope and header)
+# Sender verification SMTP (envelope and header)
 exim -bh 127.0.0.1
+helo test
 mail from:<unknown@test.ex>
 rcpt to:<userx@test.ex>
 rset
 mail from:<userx@unknown.dom.ain>
 rcpt to:<userx@test.ex>
 rset
+mail from:<"unknown with spaces"@test.ex>
+rcpt to:<userx@test.ex>
+rset
 mail from:<userx@test.ex>
 rcpt to:<userx@test.ex>
 data
@@ -26,3 +30,18 @@ from: <defer@test.ex>
 .
 quit
 ****
+# Sender verification (ESMTP)
+exim -bh 127.0.0.1
+ehlo foo.bar
+mail from:<ab@localhost1>
+rset
+ehlo foo.bar
+mail from:<"a b"@localhost2>
+rset
+ehlo foo.bar
+mail from:<"a b"@localhost3> SIZE=1234
+rset
+ehlo foo.bar
+mail from:"a b"@localhost4 SIZE=1234
+quit
+****