curl-curl/tests/data/test904
Viktor Szakats de49cc89ab
tests/data: more XML-compliance via %LT and %GT macros in email addresses
Reduce number of files failing `xmllint --format` from 133 to 57 (-76)
(3% of 1894), by replacing `<` and `>` with new macro `%LT` and `%GT`,
in most places, which is in email addresses (192 lines).

Follow-up to a9ec2a676c #19491

Closes #19470
2025-11-18 18:57:53 +01:00

58 lines
810 B
Plaintext

<testcase>
<info>
<keywords>
SMTP
SASL
SASL AUTH LOGIN
RFC4954
</keywords>
</info>
#
# Server-side
<reply>
<servercmd>
AUTH LOGIN
REPLY AUTH 334 VXNlcm5hbWU6
REPLY dXNlcg== 334 UGFzc3dvcmQ6
REPLY c2VjcmV0 235 Authenticated
</servercmd>
</reply>
#
# Client-side
<client>
<server>
smtp
</server>
<name>
SMTP login authentication
</name>
<stdin crlf="yes">
mail body
</stdin>
<command>
smtp://%HOSTIP:%SMTPPORT/%TESTNUMBER --mail-rcpt recipient@example.com --mail-from sender@example.com -u user:secret -T -
</command>
</client>
#
# Verify data after the test has been "shot"
<verify>
<protocol crlf="yes">
EHLO %TESTNUMBER
AUTH LOGIN
dXNlcg==
c2VjcmV0
MAIL FROM:%LTsender@example.com%GT
RCPT TO:%LTrecipient@example.com%GT
DATA
QUIT
</protocol>
<upload crlf="yes">
mail body
.
</upload>
</verify>
</testcase>