aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-08-16 09:43:54 +0000
committerVincent Richard <[email protected]>2013-08-16 09:43:54 +0000
commit2f513ff53232c384a705c292c596abbc77f83366 (patch)
tree908deeb07f5fc7c9461ac7608cb09748a55c3401
parentAdded test for SMTP connection error. (diff)
downloadvmime-2f513ff53232c384a705c292c596abbc77f83366.tar.gz
vmime-2f513ff53232c384a705c292c596abbc77f83366.zip
Fixed missing space in command.
-rw-r--r--src/net/imap/IMAPFolder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/imap/IMAPFolder.cpp b/src/net/imap/IMAPFolder.cpp
index 4214238a..94d7ab13 100644
--- a/src/net/imap/IMAPFolder.cpp
+++ b/src/net/imap/IMAPFolder.cpp
@@ -924,9 +924,9 @@ void IMAPFolder::deleteMessages(const messageSet& msgs)
command.imbue(std::locale::classic());
if (msgs.isUIDSet())
- command << "UID STORE" << IMAPUtils::messageSetToSequenceSet(msgs);
+ command << "UID STORE " << IMAPUtils::messageSetToSequenceSet(msgs);
else
- command << "STORE" << IMAPUtils::messageSetToSequenceSet(msgs);
+ command << "STORE " << IMAPUtils::messageSetToSequenceSet(msgs);
command << " +FLAGS (\\Deleted)";