Commit e4670a10 authored by Steve Holme's avatar Steve Holme
Browse files

tests: Tidy up of SMTP and POP3 tests

Corrected line endings, RFC references and standardised on user names
and passwords used in the tests.
parent 1f0e50f2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
POP3
UIDL
CUSTOMREQUEST
RFC2449
</keywords>
</info>

+2 −1
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
POP3
TOP
CUSTOMREQUEST
RFC2449
</keywords>
</info>

+3 −3
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ RFC4954
<servercmd>
AUTH PLAIN
REPLY AUTH 334 PLAIN supported
REPLY dGVzdAB0ZXN0ADEyMzQ= 235 Authenticated
REPLY dXNlcgB1c2VyAHNlY3JldA== 235 Authenticated
</servercmd>
</reply>

@@ -31,7 +31,7 @@ SMTP plain authentication
mail body
</stdin>
 <command>
smtp://%HOSTIP:%SMTPPORT/903 --mail-rcpt recipient@example.com --mail-from sender@example.com -u test:1234 -T -
smtp://%HOSTIP:%SMTPPORT/903 --mail-rcpt recipient@example.com --mail-from sender@example.com -u user:secret -T -
</command>
</client>

@@ -41,7 +41,7 @@ smtp://%HOSTIP:%SMTPPORT/903 --mail-rcpt recipient@example.com --mail-from sende
<protocol>
EHLO 903
AUTH PLAIN
dGVzdAB0ZXN0ADEyMzQ=
dXNlcgB1c2VyAHNlY3JldA==
MAIL FROM:<sender@example.com>
RCPT TO:<recipient@example.com>
DATA
+6 −6
Original line number Diff line number Diff line
@@ -13,8 +13,8 @@ RFC4954
<servercmd>
AUTH LOGIN
REPLY AUTH 334 LOGIN supported
REPLY dGVzdA== 334 UGFzc3dvcmQ6
REPLY MTIzNA== 235 Authenticated
REPLY dXNlcg== 334 UGFzc3dvcmQ6
REPLY c2VjcmV0 235 Authenticated
</servercmd>
</reply>

@@ -31,7 +31,7 @@ SMTP login authentication
mail body
</stdin>
 <command>
smtp://%HOSTIP:%SMTPPORT/904 --mail-rcpt recipient@example.com --mail-from sender@example.com -u test:1234 -T -
smtp://%HOSTIP:%SMTPPORT/904 --mail-rcpt recipient@example.com --mail-from sender@example.com -u user:secret -T -
</command>
</client>

@@ -41,8 +41,8 @@ smtp://%HOSTIP:%SMTPPORT/904 --mail-rcpt recipient@example.com --mail-from sende
<protocol>
EHLO 904
AUTH LOGIN
dGVzdA==
MTIzNA==
dXNlcg==
c2VjcmV0
MAIL FROM:<sender@example.com>
RCPT TO:<recipient@example.com>
DATA
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
<keywords>
SMTP
SMTP AUTH NTLM
RFC4954
</keywords>
</info>

Loading