Skip to content
Snippets Groups Projects
Commit e6d99f4b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

SMTP tests: updated MAIL FROM use

They were all wrong previously since none used the <brackets> they
should for MAIL FROM. Now libcurl adds them itself if the app doesn't so
they end up wrong less easy.
parent 16c4314a
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 802@foo --mail-rcpt 802@foobar.example
<verify>
<protocol>
EHLO user
MAIL FROM:802@from
MAIL FROM:<802@from>
RCPT TO:<802@foo>
RCPT TO:<802@foobar.example>
DATA
......
......@@ -32,7 +32,7 @@ To: another
body
</stdin>
<command>
smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 803@foo --mail-from 803@from -T -
smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 803@foo --mail-from '<803@from>' -T -
</command>
</client>
......@@ -41,7 +41,7 @@ smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 803@foo --mail-from 803@from -T -
<verify>
<protocol>
EHLO user
MAIL FROM:803@from
MAIL FROM:<803@from>
RCPT TO:<803@foo>
DATA
QUIT
......
......@@ -42,7 +42,7 @@ smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 804@foo --mail-from 804@from -T -
<protocol>
EHLO user
HELO user
MAIL FROM:804@from
MAIL FROM:<804@from>
RCPT TO:<804@foo>
DATA
QUIT
......
......@@ -40,7 +40,7 @@ smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 805@foo --mail-from 805@from -u test:1
<protocol>
EHLO user
AUTH PLAIN dGVzdAB0ZXN0ADEyMzQ=
MAIL FROM:805@from
MAIL FROM:<805@from>
RCPT TO:<805@foo>
DATA
QUIT
......
......@@ -41,7 +41,7 @@ smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 806@foo --mail-from 806@from -u test:1
EHLO user
AUTH LOGIN dGVzdA==
MTIzNA==
MAIL FROM:806@from
MAIL FROM:<806@from>
RCPT TO:<806@foo>
DATA
QUIT
......
......@@ -45,7 +45,7 @@ smtp://%HOSTIP:%SMTPPORT/user --mail-rcpt 807@foo --mail-from 807@from -u tim:ta
EHLO user
AUTH CRAM-MD5
dGltIGI5MTNhNjAyYzdlZGE3YTQ5NWI0ZTZlNzMzNGQzODkw
MAIL FROM:807@from
MAIL FROM:<807@from>
RCPT TO:<807@foo>
DATA
QUIT
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment