EAS reply fix when message/rfc822 parts are included in the original mail (#3153)

pull/75/merge
Ludovic Marcotte 2015-03-30 09:57:27 -04:00
parent f5607b3e85
commit c428ac2553
2 changed files with 5 additions and 0 deletions

View File

@ -224,6 +224,10 @@ struct GlobalObjectId {
while ((key = [e nextObject]))
{
// don't use body parts from a nested body - e.g. body of type message/rfc822
if (![key hasPrefix: @"1"])
continue;
part = [self lookupInfoForBodyPart: key];
type = [part valueForKey: @"type"];
subtype = [part valueForKey: @"subtype"];

1
NEWS
View File

@ -6,6 +6,7 @@ Enhancements
Bug fixes
- now keep the BodyPreference for future EAS use and default to MIME if none set (#3146)
- EAS reply fix when message/rfc822 parts are included in the original mail (#3153)
2.2.17a (2015-03-15)
--------------------