ftpserver.pl: Corrected response code for successful SMTP QUIT command

This commit is contained in:
Steve Holme 2013-09-15 20:09:32 +01:00
parent 894585784c
commit c03335ec68

View File

@ -837,7 +837,7 @@ sub HELO_smtp {
}
sub QUIT_smtp {
sendcontrol "200 byebye\r\n";
sendcontrol "221 byebye\r\n";
return 0;
}