4 releases

0.1.4 Nov 26, 2023
0.1.3 Mar 12, 2022
0.1.2 Feb 14, 2021
0.1.0 Apr 25, 2020

#27 in Email

Download history 1586/week @ 2023-12-08 1756/week @ 2023-12-15 1085/week @ 2023-12-22 1085/week @ 2023-12-29 1283/week @ 2024-01-05 1525/week @ 2024-01-12 1388/week @ 2024-01-19 1293/week @ 2024-01-26 1314/week @ 2024-02-02 1277/week @ 2024-02-09 1546/week @ 2024-02-16 1571/week @ 2024-02-23 1284/week @ 2024-03-01 1610/week @ 2024-03-08 1156/week @ 2024-03-15 1295/week @ 2024-03-22

5,573 downloads per month
Used in 4 crates (2 directly)

Custom license

33KB
658 lines

EmlParser

EmlParser is a crate intended to parse .eml files. Currently, this crate is very basic, supporting extracting field (name,value) pairs from an email header plus the body of the message. Special headers To, From, and Subject are separated out; all others are currently listed in a Vec<HeaderField>.

The parsing for this crate attempts to follow RFC-0822, though in practice there seem to be deviations from the RFC as to how to handle newlines. The spec lays out that the body and header are separated by a null line, as delimited by CRLF. Often, we'll actually see \n\n, so EmlParser allows \n\n, \r\r, and \r\n\r\n.

Note that header fields are able to include newlines in them, defined as linear whitespace.

Finding the separator between the header and body follows the following transition digram:

Transition diagram for detecting the header/body delimiter

Usage

You can use EmlParser with a &str or a filename:

let eml: Eml = EmlParser::from_file("Re: hello.eml")?
    .ignore_body()
    .parse()?;

let expected = HeaderFieldValue::SingleEmailAddress(EmailAddress::NameAndEmailAddress {
    name: "Anne Thompson".to_string(),
    address: "anne@example.com".to_string(),
});

assert_eq!(Some(expected), eml.from);
assert_eq!(Some("Re: hello".to_string()), eml.subject);

Dependencies

~10MB
~230K SLoC