Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Process root element of embedded emails #201

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Oct 19, 2017

  1. Process root element of embedded emails

    An email with an embedded email can have the following structure:
    
    1: "text/plain"
    2: "message/rfc822"
    2: "multipart/mixed"
    2.1: "text/plain"
    2.2: "application/octet-stream"
    2.3, "application/octet-stream"
    
    Before this fix this structure was parsed as
    
    1: "text/plain"
    2: "message/rfc822"
    2.1: "multipart/mixed"
    2.1.1: "text/plain"
    2.1.2: "application/octet-stream"
    2.1.3, "application/octet-stream"
    
    Hence, downloading attachments was not possible due to wrong part
    identifiers
    
    resolves tedious#188, tedious#43
    Christian Bartels committed Oct 19, 2017
    Configuration menu
    Copy the full SHA
    1602b3d View commit details
    Browse the repository at this point in the history