curl/tests/data/test950
Viktor Szakats d229055549
tidy-up: miscellaneous
- drop more uses of the word "just". (not enforced here)
- drop some uses of the "will" word.
- "then" -> "than".
- tests/http/testenv/curl.py: fix copy-paste typo in error message.
- pytest: replace `shutdownh` with `shutdown` in test names.
  Spotted by GitHub Code Quality.
- comment typos.
- whitespace and newlines fixes.

Closes #21830
2026-06-01 22:33:57 +02:00

41 lines
616 B
XML

<?xml version="1.0" encoding="US-ASCII"?>
<testcase>
<info>
<keywords>
SMTP
VRFY
--request
</keywords>
</info>
# Server-side
<reply>
<data crlf="yes">
250 %LTrecipient@example.com%GT
</data>
</reply>
# Client-side
<client>
<server>
smtp
</server>
<name>
SMTP VRFY with custom request
</name>
# the custom request does it lowercase to remain the same command
<command>
smtp://%HOSTIP:%SMTPPORT/%TESTNUMBER --mail-rcpt recipient --request "vrfy"
</command>
</client>
# Verify data after the test has been "shot"
<verify>
<protocol crlf="yes">
EHLO %TESTNUMBER
vrfy recipient
QUIT
</protocol>
</verify>
</testcase>