12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <testcase>
- <info>
- <keywords>
- SMTP
- SIZE
- </keywords>
- </info>
- #
- # Server-side
- <reply>
- <servercmd>
- CAPA SIZE
- </servercmd>
- </reply>
- #
- # Client-side
- <client>
- <server>
- smtp
- </server>
- <name>
- SMTP with SIZE support
- </name>
- <file name="%LOGDIR/test%TESTNUMBER.eml">
- From: different
- To: another
- body
- </file>
- <command>
- smtp://%HOSTIP:%SMTPPORT/%TESTNUMBER --mail-rcpt recipient@example.com --mail-from sender@example.com -T %LOGDIR/test%TESTNUMBER.eml
- </command>
- </client>
- #
- # Verify data after the test has been "shot"
- <verify>
- <protocol>
- EHLO %TESTNUMBER
- MAIL FROM:<sender@example.com> SIZE=38
- RCPT TO:<recipient@example.com>
- DATA
- QUIT
- </protocol>
- <upload>
- From: different
- To: another
- body
- .
- </upload>
- </verify>
- </testcase>
|