diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-01-22 18:42:12 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-01-22 18:42:12 -0300 |
commit | 460539c51b431b6d16c45ecd8216ab1e0471d106 (patch) | |
tree | 0277c42343dd1ff456818753ca4d83b438c007db /src/leap/mail | |
parent | b07cea9374b9eb382fc18897bbb3df31efd54bb7 (diff) |
Properly parse apple mail
Diffstat (limited to 'src/leap/mail')
-rw-r--r-- | src/leap/mail/walk.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/leap/mail/walk.py b/src/leap/mail/walk.py index dd3b745..27d672c 100644 --- a/src/leap/mail/walk.py +++ b/src/leap/mail/walk.py @@ -143,6 +143,15 @@ def walk_msg_tree(parts, body_phash=None): pv = list(get_parts_vector(parts)) wv = getwv(pv) + if all(x == 1 for x in pv): + # special case in the rightmost element + main_pmap = parts[0]['part_map'] + last_part = max(main_pmap.keys()) + main_pmap[last_part]['part_map'] = {} + for partind in range(len(pv) - 1): + print partind+1, len(parts) + main_pmap[last_part]['part_map'][partind] = parts[partind+1] + outer = parts[0] outer.pop('headers') if not "part_map" in outer: |