mirror of
https://github.com/curl/curl.git
synced 2026-06-05 11:54:16 +03:00
ftpserver.pl: Added SELECT check to IMAP FETCH and STORE handlers
This commit is contained in:
parent
49e3d803ab
commit
6a353049ac
1 changed files with 10 additions and 2 deletions
|
|
@ -829,6 +829,9 @@ sub FETCH_imap {
|
|||
$data[0] = $response;
|
||||
logmsg "return proof we are we\n";
|
||||
}
|
||||
elsif ($selected eq "") {
|
||||
sendcontrol "$cmdid BAD Command received in Invalid state\r\n";
|
||||
}
|
||||
else {
|
||||
logmsg "retrieve a mail\n";
|
||||
|
||||
|
|
@ -941,8 +944,13 @@ sub STORE_imap {
|
|||
|
||||
logmsg "STORE_imap got $args\n";
|
||||
|
||||
sendcontrol "* $uid FETCH (FLAGS (\\Seen \\Deleted))\r\n";
|
||||
sendcontrol "$cmdid OK STORE completed\r\n";
|
||||
if ($selected eq "") {
|
||||
sendcontrol "$cmdid BAD Command received in Invalid state\r\n";
|
||||
}
|
||||
else {
|
||||
sendcontrol "* $uid FETCH (FLAGS (\\Seen \\Deleted))\r\n";
|
||||
sendcontrol "$cmdid OK STORE completed\r\n";
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue