Changed IMAP command "UID SEARCH (HEADER MESSAGE-ID %s)" to "UID SEARCH HEADER MESSAGE-ID %s"

Fixes issue 1031.
This commit is contained in:
cketti 2010-02-03 17:25:15 +00:00
parent d022be83ae
commit 8049e90b8c
1 changed files with 1 additions and 1 deletions

View File

@ -1594,7 +1594,7 @@ public class ImapStore extends Store
List<ImapResponse> responses =
executeSimpleCommand(
String.format("UID SEARCH (HEADER MESSAGE-ID %s)", messageId));
String.format("UID SEARCH HEADER MESSAGE-ID %s", messageId));
for (ImapResponse response1 : responses)
{
if (response1.mTag == null && response1.get(0).equals("SEARCH")