mirror of
https://github.com/curl/curl.git
synced 2026-06-06 09:44:17 +03:00
ftpserver.pl: Moved SMTP MAIL handler into own function
This commit is contained in:
parent
158dfe2c5c
commit
96b68c57ce
1 changed files with 7 additions and 1 deletions
|
|
@ -625,11 +625,11 @@ sub protocolsetup {
|
|||
'DATA' => \&DATA_smtp,
|
||||
'EHLO' => \&EHLO_smtp,
|
||||
'HELO' => \&HELO_smtp,
|
||||
'MAIL' => \&MAIL_smtp,
|
||||
'RCPT' => \&RCPT_smtp,
|
||||
'QUIT' => \&QUIT_smtp,
|
||||
);
|
||||
%displaytext = (
|
||||
'MAIL' => '200 Note taken',
|
||||
'RCPT' => '200 Receivers accepted',
|
||||
'welcome' => join("",
|
||||
'220- _ _ ____ _ '."\r\n",
|
||||
|
|
@ -738,6 +738,12 @@ sub EHLO_smtp {
|
|||
return 0;
|
||||
}
|
||||
|
||||
sub MAIL_smtp {
|
||||
sendcontrol "200 Note taken\r\n";
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
sub DATA_smtp {
|
||||
my $testno;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue