96 lines
3.8 KiB
Markdown
96 lines
3.8 KiB
Markdown
# Crate email_address
|
|
|
|
A Rust crate providing an implementation of an RFC-compliant `EmailAddress` newtype.
|
|
|
|

|
|

|
|
[](https://crates.io/crates/email_address)
|
|
[](https://docs.rs/email_address)
|
|

|
|

|
|
[](https://github.com/johnstonskj/rust-email_address/stargazers)
|
|
|
|
Primarily for validation, the `EmailAddress` type is constructed with `FromStr::from_str` which will raise any
|
|
parsing errors. Prior to constructions the functions `is_valid`, `is_valid_local_part`, and `is_valid_domain` may
|
|
also be used to test for validity without constructing an instance.
|
|
|
|
## Status
|
|
|
|
Currently, it supports all the RFC ASCII and UTF-8 character set rules as well as quoted and unquoted local
|
|
parts but does not yet support all the productions required for SMTP headers; folding whitespace, comments, etc.
|
|
|
|
## Example
|
|
|
|
```rust
|
|
use email_address::*;
|
|
|
|
assert!(EmailAddress::is_valid("user.name+tag+sorting@example.com"));
|
|
|
|
assert_eq!(
|
|
EmailAddress::from_str("Abc.example.com"),
|
|
Error::MissingSeparator.into()
|
|
);
|
|
```
|
|
|
|
## Specifications
|
|
|
|
1. RFC 1123: [_Requirements for Internet Hosts -- Application and Support_](https://tools.ietf.org/html/rfc1123),
|
|
IETF,Oct 1989.
|
|
1. RFC 3629: [_UTF-8, a transformation format of ISO 10646_](https://tools.ietf.org/html/rfc3629),
|
|
IETF, Nov 2003.
|
|
1. RFC 3696: [_Application Techniques for Checking and Transformation of
|
|
Names_](https://tools.ietf.org/html/rfc3696), IETF, Feb 2004.
|
|
1. RFC 4291 [_IP Version 6 Addressing Architecture_](https://tools.ietf.org/html/rfc4291),
|
|
IETF, Feb 2006.
|
|
1. RFC 5234: [_Augmented BNF for Syntax Specifications: ABNF_](https://tools.ietf.org/html/rfc5234),
|
|
IETF, Jan 2008.
|
|
1. RFC 5321: [_Simple Mail Transfer Protocol_](https://tools.ietf.org/html/rfc5321),
|
|
IETF, Oct 2008.
|
|
1. RFC 5322: [_Internet Message Format_](https://tools.ietf.org/html/rfc5322), I
|
|
ETF, Oct 2008.
|
|
1. RFC 5890: [_Internationalized Domain Names for Applications (IDNA): Definitions and Document
|
|
Framework_](https://tools.ietf.org/html/rfc5890), IETF, Aug 2010.
|
|
1. RFC 6531: [_SMTP Extension for Internationalized Email_](https://tools.ietf.org/html/rfc6531),
|
|
IETF, Feb 2012
|
|
1. RFC 6532: [_Internationalized Email Headers_](https://tools.ietf.org/html/rfc6532),
|
|
IETF, Feb 2012.
|
|
|
|
## Changes
|
|
|
|
**Version 0.2.3**
|
|
|
|
* Added new `EmailAddress::new_unchecked` function ([Sören Meier](https://github.com/soerenmeier)).
|
|
|
|
**Version 0.2.2**
|
|
|
|
* Removed manual `Send` and `Sync` implementation, and fixed documentation bug
|
|
([Sören Meier](https://github.com/soerenmeier)).
|
|
|
|
**Version 0.2.1**
|
|
|
|
* Added `From<EmailAddress>` for `String`.
|
|
* Added `AsRef<str` for `EmailAddress`.
|
|
* Added `local_part` and `domain` accessors.
|
|
* More unit tests, especially for the list above.
|
|
* Added more conditions to the warning and deny list.
|
|
* Fixed some Clippy warnings.
|
|
* Fixed a bug in encoding the mailto URI scheme.
|
|
|
|
**Version 0.2.0**
|
|
|
|
* Added UTF-8 support.
|
|
* Added more test cases, fixing defects in parsing.
|
|
* Method `to_uri` now supports URI encoding the address as a part of the URI.
|
|
* Added `is_valid_local_part` and `is_valid_domain` methods.
|
|
|
|
**Version 0.1.0**
|
|
|
|
* Basic type implementation and structure based on RFC 5322.
|
|
* See TODO.
|
|
|
|
## TODO
|
|
|
|
1. Support comments.
|
|
1. Support line-feed and whitespace rules.
|
|
1. Does not parse _into_ `domain-literal` values, only does surface syntax check.
|