ftpserver.pl: Fixed IMAP SEARCH command
authorSteve Holme <steve_holme@hotmail.com>
Wed, 28 Aug 2013 17:51:59 +0000 (18:51 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Wed, 28 Aug 2013 17:51:59 +0000 (18:51 +0100)
tests/ftpserver.pl

index 0e4a7bc..d5ae6bb 100755 (executable)
@@ -1033,12 +1033,13 @@ sub STATUS_imap {
 }
 
 sub SEARCH_imap {
-    my ($testno) = @_;
-    fix_imap_params($testno);
+    my ($what) = @_;
+    my $testno = $selected;
+    fix_imap_params($what);
 
     logmsg "SEARCH_imap got test $testno\n";
 
-    $testno =~ s/[^0-9]//g;
+    $testno =~ s/^([^0-9]*)//;
     my $testpart = "";
     if ($testno > 10000) {
         $testpart = $testno % 10000;