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

ftpserver.pl: Fixed unknown IMAP command "*"

This commit is contained in:
Steve Holme 2013-11-23 19:19:12 +00:00
parent e1c255f388
commit 7a36b2abc0

View File

@ -3168,7 +3168,8 @@ while(1) {
$FTPARG=$3;
}
# IMAP long "commands" are base64 authentication data
elsif($full =~ /^[A-Z0-9+\/]*={0,2}$/i) {
elsif(($full =~ /^[A-Z0-9+\/]*={0,2}$/i) ||
($full == "*")) {
# Command id has already been set
$FTPCMD=$full;
$FTPARG="";