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 | 5593be27282a0b79e8d1bb8f63a8d2e3648e3f1a (patch) | |
| tree | e3729d210a0740f68423d96963e66e0cc88e89fa /mail/src | |
| parent | ccab7ac16dd40f822e2beafad4775dca90dd51b5 (diff) | |
Properly parse apple mail
Diffstat (limited to 'mail/src')
| -rw-r--r-- | mail/src/leap/mail/walk.py | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/mail/src/leap/mail/walk.py b/mail/src/leap/mail/walk.py index dd3b745..27d672c 100644 --- a/mail/src/leap/mail/walk.py +++ b/mail/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: | 
