From 8049e90b8c3533906bb3b2049271c6370c103937 Mon Sep 17 00:00:00 2001 From: cketti Date: Wed, 3 Feb 2010 17:25:15 +0000 Subject: [PATCH] Changed IMAP command "UID SEARCH (HEADER MESSAGE-ID %s)" to "UID SEARCH HEADER MESSAGE-ID %s" Fixes issue 1031. --- src/com/fsck/k9/mail/store/ImapStore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/fsck/k9/mail/store/ImapStore.java b/src/com/fsck/k9/mail/store/ImapStore.java index d02d69d53..c3ae963eb 100644 --- a/src/com/fsck/k9/mail/store/ImapStore.java +++ b/src/com/fsck/k9/mail/store/ImapStore.java @@ -1594,7 +1594,7 @@ public class ImapStore extends Store List 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")