diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-11-17 10:03:25 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-11-17 10:11:27 +0000 |
commit | df58084695ce9b568c0986d0979bb50b360ef010 (patch) | |
tree | 3c4c60f5b1f193908b0b13d765ba539cd8fd1e1f /tests/ftpserver.pl | |
parent | 3c8c9b2779df175f2f740bb6fbe414e0c56f94b6 (diff) | |
download | curl-df58084695ce9b568c0986d0979bb50b360ef010.tar.gz |
tests: Added SMTP HELP test
Diffstat (limited to 'tests/ftpserver.pl')
-rwxr-xr-x | tests/ftpserver.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index a116850aa..d71dc8a24 100755 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -999,10 +999,10 @@ sub HELP_smtp { sendcontrol "214-This server supports the following commands:\r\n"; if(@auth_mechs) { - sendcontrol "214 HELO EHLO RCPT DATA RSET MAIL QUIT HELP AUTH\r\n"; + sendcontrol "214 HELO EHLO RCPT DATA RSET MAIL VRFY EXPN QUIT HELP AUTH\r\n"; } else { - sendcontrol "214 HELO EHLO RCPT DATA RSET MAIL QUIT HELP\r\n"; + sendcontrol "214 HELO EHLO RCPT DATA RSET MAIL VRFY EXPN QUIT HELP\r\n"; } return 0; |