Fixed extraction of message parts in IMAP.
This commit is contained in:
parent
d49ce7cd4d
commit
3fe31cbc0a
@ -341,9 +341,6 @@ void IMAPMessage::extractImpl
|
|||||||
// header + body
|
// header + body
|
||||||
if ((extractFlags & EXTRACT_HEADER) && (extractFlags & EXTRACT_BODY))
|
if ((extractFlags & EXTRACT_HEADER) && (extractFlags & EXTRACT_BODY))
|
||||||
throw exceptions::operation_not_supported();
|
throw exceptions::operation_not_supported();
|
||||||
// body only
|
|
||||||
else if (extractFlags & EXTRACT_BODY)
|
|
||||||
command << ".TEXT";
|
|
||||||
// header only
|
// header only
|
||||||
else if (extractFlags & EXTRACT_HEADER)
|
else if (extractFlags & EXTRACT_HEADER)
|
||||||
command << ".MIME"; // "MIME" not "HEADER" for parts
|
command << ".MIME"; // "MIME" not "HEADER" for parts
|
||||||
|
Loading…
Reference in New Issue
Block a user