ftpserver.pl: Reordered the POP3 handlers to be alphabetical
In preparation for additional POP3 tests, re-ordered the command function defintions to be sorted alphabetically.
This commit is contained in:
@@ -556,11 +556,11 @@ sub protocolsetup {
|
|||||||
}
|
}
|
||||||
elsif($proto eq 'pop3') {
|
elsif($proto eq 'pop3') {
|
||||||
%commandfunc = (
|
%commandfunc = (
|
||||||
'CAPA' => \&CAPA_pop3,
|
|
||||||
'AUTH' => \&AUTH_pop3,
|
'AUTH' => \&AUTH_pop3,
|
||||||
'RETR' => \&RETR_pop3,
|
'CAPA' => \&CAPA_pop3,
|
||||||
'LIST' => \&LIST_pop3,
|
|
||||||
'DELE' => \&DELE_pop3,
|
'DELE' => \&DELE_pop3,
|
||||||
|
'LIST' => \&LIST_pop3,
|
||||||
|
'RETR' => \&RETR_pop3,
|
||||||
);
|
);
|
||||||
%displaytext = (
|
%displaytext = (
|
||||||
'USER' => '+OK We are happy you popped in!',
|
'USER' => '+OK We are happy you popped in!',
|
||||||
|
|||||||
Reference in New Issue
Block a user