mirror of
https://github.com/moparisthebest/curl
synced 2024-11-15 14:05:03 -05:00
ftpserver.pl: Added SELECT check to IMAP SEARCH command
This commit is contained in:
parent
13a2e32548
commit
4ae7b7ea69
@ -1034,28 +1034,33 @@ sub STATUS_imap {
|
||||
|
||||
sub SEARCH_imap {
|
||||
my ($what) = @_;
|
||||
my $testno = $selected;
|
||||
fix_imap_params($what);
|
||||
|
||||
logmsg "SEARCH_imap got test $testno\n";
|
||||
if ($selected eq "") {
|
||||
sendcontrol "$cmdid BAD Command received in Invalid state\r\n";
|
||||
else {
|
||||
my $testno = $selected;
|
||||
|
||||
$testno =~ s/^([^0-9]*)//;
|
||||
my $testpart = "";
|
||||
if ($testno > 10000) {
|
||||
$testpart = $testno % 10000;
|
||||
$testno = int($testno / 10000);
|
||||
logmsg "SEARCH_imap got test $testno\n";
|
||||
|
||||
$testno =~ s/^([^0-9]*)//;
|
||||
my $testpart = "";
|
||||
if ($testno > 10000) {
|
||||
$testpart = $testno % 10000;
|
||||
$testno = int($testno / 10000);
|
||||
}
|
||||
|
||||
loadtest("$srcdir/data/test$testno");
|
||||
|
||||
my @data = getpart("reply", "data$testpart");
|
||||
|
||||
for my $d (@data) {
|
||||
sendcontrol $d;
|
||||
}
|
||||
|
||||
sendcontrol "$cmdid OK SEARCH completed\r\n";
|
||||
}
|
||||
|
||||
loadtest("$srcdir/data/test$testno");
|
||||
|
||||
my @data = getpart("reply", "data$testpart");
|
||||
|
||||
for my $d (@data) {
|
||||
sendcontrol $d;
|
||||
}
|
||||
|
||||
sendcontrol "$cmdid OK SEARCH completed\r\n";
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user