Commit b420f60a authored by Yang Tse's avatar Yang Tse
Browse files

pop3 test server: allow pop3 test server verification to succeed again

Introduce SUPPORTCAPA and SUPPORTAUTH config commands to allow further
pop3 test server expansion for tests that require CAPA or AUTH support,
although this will need some extra work to make it fully functional.
parent 7291c1f5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -58,6 +58,7 @@ pop3://%HOSTIP:%POP3PORT/1319 -p -x %HOSTIP:%PROXYPORT -u user:secret
^User-Agent:
</strip>
<protocol>
AUTH
USER user
PASS secret
RETR 1319
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ pop3://%HOSTIP:%POP3PORT/1407 -l -u user:secret --libcurl log/test1407.c
# Verify data after the test has been "shot"
<verify>
<protocol>
AUTH
USER user
PASS secret
LIST 1407
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ pop3://%HOSTIP:%POP3PORT/800 -u user:secret
# Verify data after the test has been "shot"
<verify>
<protocol>
AUTH
USER user
PASS secret
RETR 800
+0 −1
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@ LIST
# Server-side
<reply>
<servercmd>
REPLY AUTH -ERR unsupported command
REPLY LIST +OK 808 100
</servercmd>
</reply>
+0 −1
Original line number Diff line number Diff line
@@ -11,7 +11,6 @@ FAILURE
# Server-side
<reply>
<servercmd>
REPLY AUTH -ERR unsupported command
REPLY LIST -ERR no such message
</servercmd>
</reply>
Loading