1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-26 01:28:50 -05:00

It turns out that if you're only fetching the bodystructure, the mime4j

parser can't parse the message.
This commit is contained in:
Jesse Vincent 2010-08-17 04:21:22 +00:00
parent 02aad5945a
commit 8832933a60

View File

@ -1219,7 +1219,7 @@ public class ImapStore extends Store
int messageNumber = 0; int messageNumber = 0;
ImapResponseParser.IImapResponseCallback callback = null; ImapResponseParser.IImapResponseCallback callback = null;
if (fp.contains(FetchProfile.Item.BODY) || fp.contains(FetchProfile.Item.BODY_SANE) || fp.contains(FetchProfile.Item.ENVELOPE)) if (fp.contains(FetchProfile.Item.BODY) || fp.contains(FetchProfile.Item.BODY_SANE) )
{ {
callback = new FetchBodyCallback(messageMap); callback = new FetchBodyCallback(messageMap);
} }