Commit 7a36b2ab authored by Steve Holme's avatar Steve Holme
Browse files

ftpserver.pl: Fixed unknown IMAP command "*"

parent e1c255f3
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -3168,7 +3168,8 @@ while(1) {
                $FTPARG=$3;
                $FTPARG=$3;
            }
            }
            # IMAP long "commands" are base64 authentication data
            # 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
                # Command id has already been set
                $FTPCMD=$full;
                $FTPCMD=$full;
                $FTPARG="";
                $FTPARG="";