diff options
author | Vincent Richard <[email protected]> | 2014-02-08 00:08:02 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2014-02-08 00:08:02 +0000 |
commit | 3fe31cbc0afd2247c266f2f2ab0f6a9ab4cd387c (patch) | |
tree | 8e23806cd593a42426f9fd83cdc04e14b77f2810 /src | |
parent | Windows charset converter (thanks to ElmüSoft). (diff) | |
download | vmime-3fe31cbc0afd2247c266f2f2ab0f6a9ab4cd387c.tar.gz vmime-3fe31cbc0afd2247c266f2f2ab0f6a9ab4cd387c.zip |
Fixed extraction of message parts in IMAP.
Diffstat (limited to 'src')
-rw-r--r-- | src/vmime/net/imap/IMAPMessage.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/vmime/net/imap/IMAPMessage.cpp b/src/vmime/net/imap/IMAPMessage.cpp index 226a55fe..1934d717 100644 --- a/src/vmime/net/imap/IMAPMessage.cpp +++ b/src/vmime/net/imap/IMAPMessage.cpp @@ -341,9 +341,6 @@ void IMAPMessage::extractImpl // header + body if ((extractFlags & EXTRACT_HEADER) && (extractFlags & EXTRACT_BODY)) throw exceptions::operation_not_supported(); - // body only - else if (extractFlags & EXTRACT_BODY) - command << ".TEXT"; // header only else if (extractFlags & EXTRACT_HEADER) command << ".MIME"; // "MIME" not "HEADER" for parts |