Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information