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.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user