From 7a36b2abc068625b821d01cbf14c545cacc95c65 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 23 Nov 2013 19:19:12 +0000 Subject: [PATCH] ftpserver.pl: Fixed unknown IMAP command "*" --- tests/ftpserver.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index d14f7d305..38f0f3d3a 100755 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -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="";