4 releases

Uses old Rust 2015

0.9.6 Feb 15, 2019
0.9.5 Apr 5, 2017
0.9.4 Jan 31, 2017
0.9.3 Dec 7, 2016

#66 in Email

Download history 53266/week @ 2023-12-13 33949/week @ 2023-12-20 27225/week @ 2023-12-27 58398/week @ 2024-01-03 63924/week @ 2024-01-10 70616/week @ 2024-01-17 62922/week @ 2024-01-24 65279/week @ 2024-01-31 69304/week @ 2024-02-07 62812/week @ 2024-02-14 72579/week @ 2024-02-21 73353/week @ 2024-02-28 70443/week @ 2024-03-06 72671/week @ 2024-03-13 70915/week @ 2024-03-20 57484/week @ 2024-03-27

286,299 downloads per month
Used in 41 crates (5 directly)

MPL-2.0 license

15KB
202 lines

Fast Chemail

A Dart library to validate the email as it is defined in the HTML specification. The RFC 5322 is too lax (allowing comments, whitespace characters, and quoted strings in manners unfamiliar to most users) to be of practical use.

Also, has been considered the bounds defined in:

  • SMTP :: Size Limits and Minimums

    • The maximum total length of a user name or other local-part is 64 octets.
    • The maximum total length of a domain name or number is 255 octets.
    • The maximum total length of a reverse-path or forward-path is 256 octets (including the punctuation and element separators).

    There is a great contradiction. The maximum total length of an email address is 320 octects:

    {64}@{255} => 64 + 1 + 255 = 320

    but the maximum total length of a reverse-path or forward-path is 256 octets. Addition, that is only the length of the email address because it may contain a display name, like first last <local@domain> and will often extend 320 octets.

    Now well, since the standard says: "to the maximum extent possible, implementation techniques that impose no limits on the length of these objects should be used", the bound to reverse-path or forward-path will not be taken.

  • Application Techniques for Checking and Transformation of Names

    Such memo is not a standard else informational, so the correction done in the errata is not followed.

Table of Contents

Install

Add to your 'Cargo.toml' file:

[dependencies]
fast_chemail = "^0"

and to your crate root:

extern crate fast_chemail;

Usage

Read the documentation.

Contribute

The canonical source of this repository is hosted on GitLab. Please make your issues there.

The pull requests are not accepted without filling an issue, to know wheter the changes seem to me right for the project.

Note: this is a free/open source project at zero price built in my spare time, and it is possible that I have not time to solve any issue.

License

© 2016 Jonas Me See the 'AUTHORS.md' file for a full list of authors.

The source files are distributed under the terms of the license Mozilla Public License, version 2.0

Dependencies

~13KB