1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

ftpserver.pl: Corrected response code for successful RCPT command

This commit is contained in:
Steve Holme 2013-09-22 12:59:28 +01:00
parent 8ec6486d05
commit fd8dc21fd0

View File

@ -824,7 +824,7 @@ sub RCPT_smtp {
else {
$smtp_rcpt = $1;
sendcontrol "200 Receivers accepted\r\n";
sendcontrol "250 Recipient OK\r\n";
}
return 0;