Relatively naïve Pest based parser, picking out "contacts"
from "email address lists" found in headers such as from
, to
, cc
, etc.
This library aims to be practical rather than "correct". It is (potentially excessively) permissive in parsing even the worst garbage in everyone's inbox. Limited testing with real world data was done, but the grammar probably still needs work to catch even more edge cases.
0.0.x
releases may contain bugfixes and features, 0.x.0
might break
compatibility.
RFC compliant header:
```rust use emailaddresslist::*;
let manual: AddressList = vec![ Contact::new("ríomhphost@example.org").set_name("Túsainm Sloinne"), Contact::new("sampla@example.org") ].into();
let result = parseaddresslist( "Túsainm Sloinne ríomhphost@example.org, sampla@example.org" ).unwrap();
assert!(result.deep_eq(&manual)); ```
Non RFC compliant header:
```rust let manual: AddressList = vec![ Contact::new("enaslov@example.org").setname("Ime Priimek"), Contact::new("primer@example.org"), Contact::new("nepravilno.oblikovan@example.org") .setname("Oblikovan, Nepravilno"), Contact::new("napačno.oblikovan@example.org"), ].into();
let result = parseaddresslist(
concat!(
r#""Ime Priimek"
assert!(result.deep_eq(&manua ```
If you find examples of email-address-list
failing, either by omitting
addresses or supplying wrong addresses, please share them with the author.
For further information, please see the documentation.