Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/afair/email_address
The EmailAddress Gem to work with and validate email addresses.
https://github.com/afair/email_address
email-address email-validation parser ruby ruby-gem validator
Last synced: 3 months ago
JSON representation
The EmailAddress Gem to work with and validate email addresses.
- Host: GitHub
- URL: https://github.com/afair/email_address
- Owner: afair
- License: mit
- Created: 2013-04-19T23:20:59.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-10-12T12:31:01.000Z (about 1 year ago)
- Last Synced: 2024-07-20T05:28:22.350Z (4 months ago)
- Topics: email-address, email-validation, parser, ruby, ruby-gem, validator
- Language: Ruby
- Homepage:
- Size: 339 KB
- Stars: 314
- Watchers: 11
- Forks: 54
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Email Address
[![Gem Version](https://badge.fury.io/rb/email_address.svg)](http://rubygems.org/gems/email_address)
[![CI Build](https://github.com/afair/email_address/actions/workflows/ci.yml/badge.svg)](https://github.com/afair/email_address/actions/workflows/ci.yml)
[![Code Climate](https://codeclimate.com/github/afair/email_address/badges/gpa.svg)](https://codeclimate.com/github/afair/email_address)The `email_address` gem provides a ruby language library for working
with email addresses.By default, it validates against conventional usage,
the format preferred for user email addresses.
It can be configured to validate against RFC "Standard" formats,
common email service provider formats, and perform DNS validation.Using `email_address` to validate user email addresses results in
fewer "false positives" due to typing errors and gibberish data.
It validates syntax more strictly for popular email providers,
and can deal with gmail's "optional dots" in addresses.It provides Active Record (Rails) extensions, including an
address validator and attributes API custom datatypes.Requires Ruby 2.0 or later.
Looking for a Javascript version of this library? Check out the
[email_address](https://www.npmjs.com/package/email_address) npm module.## Quick Start
To quickly validate email addresses, use the valid? and error helpers.
`valid?` returns a boolean, and `error` returns nil if valid, otherwise
a basic error message.```ruby
EmailAddress.valid? "[email protected]" #=> true
EmailAddress.error "[email protected]" #=> "Invalid Host/Domain Name"
````EmailAddress` deeply validates your email addresses. It checks:
* Host name format and DNS setup
* Mailbox format according to "conventional" form. This matches most used user
email accounts, but is a subset of the RFC specification.It does not check:
* The mail server is configured to accept connections
* The mailbox is valid and accepts email.By default, MX records are required in DNS. MX or "mail exchanger" records
tell where to deliver email for the domain. Many domains run their
website on one provider (ISP, Heroku, etc.), and email on a different
provider (such as G Suite). Note that `example.com`, while
a valid domain name, does not have MX records.```ruby
EmailAddress.valid? "[email protected]" #=> false
EmailAddress.valid? "[email protected]", host_validation: :syntax #=> true
```Most mail servers do not yet support Unicode mailboxes, so the default here is ASCII.
```ruby
EmailAddress.error "Pelé@google.com" #=> "Invalid Recipient/Mailbox"
EmailAddress.valid? "Pelé@google.com", local_encoding: :unicode #=> true
```## Background
The email address specification is complex and often not what you want
when working with personal email addresses in applications. This library
introduces terms to distinguish types of email addresses.* *Normal* - The edited form of any input email address. Typically, it
is lower-cased and minor "fixes" can be performed, depending on the
configurations and email address provider.[email protected] => [email protected]
* *Conventional* - Most personal account addresses are in this basic
format, one or more "words" separated by a single simple punctuation
character. It consists of a mailbox (user name or role account) and
an optional address "tag" assigned by the user.miles.o'[email protected]
* *Relaxed* - A less strict form of Conventional, same character set,
must begin and end with an alpha-numeric character, but order within
is not enforced.* *Standard* - The RFC-Compliant syntax of an email address. This is
useful when working with software-generated addresses or handling
existing email addresses, but otherwise not useful for personal
addresses.madness!."()<>[]:,;@\\\"!#$%&'*+-/=?^_`{}| ~.a(comment )"@example.org
* *Base* - A unique mailbox without tags. For gmail, is uses the incoming
punctation, essential when building an MD5, SHA1, or SHA256 to match services
like Gravatar, and email address digest interchange.* *Canonical* - An unique account address, lower-cased, without the
tag, and with irrelevant characters stripped.[email protected] => [email protected]
* *Reference* - The MD5 of the Base format, used to share account
references without exposing the private email address directly.[email protected] =>
[email protected] => 1429a1dfc797d6e93075fef011c373fb* *Redacted* - A form of the email address where it is replaced by
a SHA1-based version to remove the original address from the
database, or to store the address privately, yet still keep it
accessible at query time by converting the queried address to
the redacted form.[email protected] => {bea3f3560a757f8142d38d212a931237b218eb5e}@gmail.com
* *Munged* - An obfuscated version of the email address suitable for
publishing on the internet, where email address harvesting
could occur.[email protected] => cl\*\*\*\*\*@gm\*\*\*\*\*
Other terms:
* *Local* - The left-hand side of the "@", representing the user,
mailbox, or role, and an optional "tag".[email protected]; Local part: mailbox+tag
* *Mailbox* - The destination user account or role account.
* *Tag* - A parameter added after the mailbox, usually after the
"+" symbol, set by the user for mail filtering and sub-accounts.
Not all mail systems support this.
* *Host* (sometimes called *Domain*) - The right-hand side of the "@"
indicating the domain or host name server to delivery the email.
If missing, "localhost" is assumed, or if not a fully-qualified
domain name, it assumed another computer on the same network, but
this is increasingly rare.
* *Provider* - The Email Service Provider (ESP) providing the email
service. Each provider may have its own email address validation
and canonicalization rules.
* *Punycode* - A host name with Unicode characters (International
Domain Name or IDN) needs conversion to this ASCII-encoded format
for DNS lookup."HIRO@こんにちは世界.com" => "[email protected]"
Wikipedia has a great article on
[Email Addresses](https://en.wikipedia.org/wiki/Email_address),
much more readable than the section within
[RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4)## Avoiding the Bad Parts of RFC Specification
Following the RFC specification sounds like a good idea, until you
learn about all the madness contained therein. This library can
validate the RFC syntax, but this is never useful, especially when
validating user email address submissions. By default, it validates
to the *conventional* format.Here are a few parts of the RFC specification you should avoid:
* Case-sensitive local parts: `[email protected]`
* Spaces and Special Characters: `"():;<>@[\\]`
* Quoting and Escaping Requirements: `"first \"nickname\" last"@example.com`
* Comment Parts: `(comment)[email protected]`
* IP and IPv6 addresses as hosts: `mailbox@[127.0.0.1]`
* Non-ASCII (7-bit) characters in the local part: `Pelé@example.com`
* Validation by voodoo regular expressions
* Gmail allows ".." in addresses since they are not meaningful, but
the standard does not.## Installation With Rails or Bundler
If you are using Rails or a project with Bundler, add this line to your application's Gemfile:
gem 'email_address'
And then execute:
$ bundle
## Installation Without Bundler
If you are not using Bundler, you need to install the gem yourself.
$ gem install email_address
Require the gem inside your script.
```ruby
require 'rubygems'
require 'email_address'
```## Usage
Use `EmailAddress` to do transformations and validations. You can also
instantiate an object to inspect the address.These top-level helpers return edited email addresses and validation
check.```ruby
address = "[email protected]"
EmailAddress.valid?(address) #=> true
EmailAddress.normal(address) #=> "[email protected]"
EmailAddress.canonical(address) #=> "[email protected]"
EmailAddress.reference(address) #=> "c5be3597c391169a5ad2870f9ca51901"
EmailAddress.redact(address) #=> "{bea3f3560a757f8142d38d212a931237b218eb5e}@gmail.com"
EmailAddress.munge(address) #=> "cl*****@gm*****"
EmailAddress.matches?(address, 'google') #=> 'google' (true)
EmailAddress.error("#[email protected]") #=> "Invalid Mailbox"
```Or you can create an instance of the email address to work with it.
```ruby
email = EmailAddress.new(address) #=> #
email.normal #=> "[email protected]"
email.canonical #=> "[email protected]"
email.original #=> "[email protected]"
email.valid? #=> true
```Here are some other methods that are available.
```ruby
email.redact #=> "{bea3f3560a757f8142d38d212a931237b218eb5e}@gmail.com"
email.sha1 #=> "bea3f3560a757f8142d38d212a931237b218eb5e"
email.sha256 #=> "9e2a0270f2d6778e5f647fc9eaf6992705ca183c23d1ed1166586fd54e859f75"
email.md5 #=> "c5be3597c391169a5ad2870f9ca51901"
email.host_name #=> "gmail.com"
email.provider #=> :google
email.mailbox #=> "clark.kent"
email.tag #=> "scoops"email.host.exchangers.first[:ip] #=> "2a00:1450:400b:c02::1a"
email.host.txt_hash #=> {:v=>"spf1", :redirect=>"\_spf.google.com"}EmailAddress.normal("HIRO@こんにちは世界.com")
#=> "[email protected]"
EmailAddress.normal("[email protected]", host_encoding: :unicode)
#=> "hiro@こんにちは世界.com"
```
As of release 0.1.17, exchanger_match is no longer used for host provider
determination, which designated the set of rules for that domain.
Sometimes, as in Google-hosted domains, the address
rules are different, notably the optional dots in mailboxes for gmail.com
accounts do not apply to other private domains hosted at google.To access the provider service, you can now call:
EmailAddress.new("[email protected]").host.hosted_provider
#### Rails Validator
For Rails' ActiveRecord classes, EmailAddress provides an ActiveRecordValidator.
Specify your email address attributes with `field: :user_email`, or
`fields: [:email1, :email2]`. If neither is given, it assumes to use the
`email` or `email_address` attribute.```ruby
class User < ActiveRecord::Base
validates_with EmailAddress::ActiveRecordValidator, field: :email
end
```#### Rails I18n
Copy and adapt `lib/email_address/messages.yaml` into your locales and
create an after initialization callback:```ruby
# config/initializers/email_address.rbRails.application.config.after_initialize do
I18n.available_locales.each do |locale|
translations = I18n.t(:email_address, locale: locale)next unless translations.is_a? Hash
EmailAddress::Config.error_messages translations.transform_keys(&:to_s), locale.to_s
end
end
```#### Rails Email Address Type Attribute
Initial support is provided for Active Record 5.0 attributes API.
First, you need to register the type in
`config/initializers/email_address.rb` along with any global
configurations you want.```ruby
ActiveRecord::Type.register(:email_address, EmailAddress::EmailAddressType)
ActiveRecord::Type.register(:canonical_email_address,
EmailAddress::CanonicalEmailAddressType)
```Assume the Users table contains the columns "email" and "canonical_email".
We want to normalize the address in "email" and store the canonical/unique
version in "canonical_email". This code will set the canonical_email when
the email attribute is assigned. With the canonical_email column,
we can look up the User, even it the given email address didn't exactly
match the registered version.```ruby
class User < ApplicationRecord
attribute :email, :email_address
attribute :canonical_email, :canonical_email_addressvalidates_with EmailAddress::ActiveRecordValidator,
fields: %i(email canonical_email)def email=(email_address)
self[:canonical_email] = email_address
self[:email] = email_address
enddef self.find_by_email(email)
user = self.find_by(email: EmailAddress.normal(email))
user ||= self.find_by(canonical_email: EmailAddress.canonical(email))
user ||= self.find_by(canonical_email: EmailAddress.redacted(email))
user
enddef redact!
self[:canonical_email] = EmailAddress.redact(self.canonical_email)
self[:email] = self[:canonical_email]
end
end
```Here is how the User model works:
```ruby
user = User.create(email:"[email protected]")
user.email #=> "[email protected]"
user.canonical_email #=> "[email protected]"
User.find_by_email("[email protected]")
#=> #
```The `find_by_email` method looks up a given email address by the
normalized form (lower case), then by the canonical form, then finally
by the redacted form.#### Validation
The only true validation is to send a message to the email address and
have the user (or process) verify it has been received. Syntax checks
help prevent erroneous input. Even sent messages can be silently
dropped, or bounced back after acceptance. Conditions such as a
"Mailbox Full" can mean the email address is known, but abandoned.There are different levels of validations you can perform. By default, it will
validate to the "Provider" (if known), or "Conventional" format defined as the
"default" provider. You may pass a a list of parameters to select
which syntax and network validations to perform.#### Comparison
You can compare email addresses:
```ruby
e1 = EmailAddress.new("[email protected]")
e2 = EmailAddress.new("[email protected]")
e3 = EmailAddress.new(e2.redact)
e1.to_s #=> "[email protected]"
e2.to_s #=> "[email protected]"
e3.to_s #=> "{bea3f3560a757f8142d38d212a931237b218eb5e}@gmail.com"e1 == e2 #=> false (Matches by normalized address)
e1.same_as?(e2) #=> true (Matches as canonical address)
e1.same_as?(e3) #=> true (Matches as redacted address)
e1 < e2 #=> true (Compares using normalized address)
```#### Matching
Matching addresses by simple patterns:
* Top-Level-Domain: .org
* Domain Name: example.com
* Registration Name: hotmail. (matches any TLD)
* Domain Glob: *.exampl?.com
* Provider Name: google
* Mailbox Name or Glob: user00*@
* Address or Glob: postmaster@domain*.com
* Provider or Registration: msnUsage:
```ruby
e = EmailAddress.new("[email protected]")
e.matches?("gmail.com") #=> true
e.matches?("google") #=> true
e.matches?(".org") #=> false
e.matches?("g*com") #=> true
e.matches?("gmail.") #=> true
e.matches?("*kent*@") #=> true
```### Configuration
You can pass an options hash on the `.new()` and helper class methods to
control how the library treats that address. These can also be
configured during initialization by provider and default (see below).```ruby
EmailAddress.new("[email protected]",
host_validation: :syntax, host_encoding: :unicode)
```Globally, you can change and query configuration options:
```ruby
EmailAddress::Config.setting(:host_validation, :mx)
EmailAddress::Config.setting(:host_validation) #=> :mx
```Or set multiple settings at once:
```ruby
EmailAddress::Config.configure(local_downcase: false, host_validation: :syntax)
```You can add special rules by domain or provider. It takes the options
above and adds the :domain_match and :exchanger_match rules.```ruby
EmailAddress.define_provider('google',
domain_match: %w(gmail.com googlemail.com),
exchanger_match: %w(google.com), # Requires host_validation==:mx
local_size: 5..64,
mailbox_canonical: ->(m) {m.gsub('.','')})
```The library ships with the most common set of provider rules. It is not meant
to house a database of all providers, but a separate `email_address-providers`
gem may be created to hold this data for those who need more complete rules.Personal and Corporate email systems are not intended for either solution.
Any of these email systems may be configured locally.Pre-configured email address providers include: Google (gmail), AOL, MSN
(hotmail, live, outlook), and Yahoo. Any address not matching one of
those patterns use the "default" provider rule set. Exchanger matches
matches against the Mail Exchanger (SMTP receivers) hosts defined in
DNS. If you specify an exchanger pattern, but requires a DNS MX lookup.For Rails application, create an initializer file with your default
configuration options.
EmailAddress::Config.setting takes a single setting name and value,
while EmailAddress::Config.configure takes a hash of multiple settings.```ruby
# ./config/initializers/email_address.rb
EmailAddress::Config.setting( :local_format, :relaxed )
EmailAddress::Config.configure( local_format: :relaxed, ... )
EmailAddress::Config.provider(:github,
host_match: %w(github.com), local_format: :standard)
```#### Override Error Messaegs
You can override the default error messages as follows:
```ruby
EmailAddress::Config.error_messages({
invalid_address: "Invalid Email Address",
invalid_mailbox: "Invalid Recipient/Mailbox",
invalid_host: "Invalid Host/Domain Name",
exceeds_size: "Address too long",
not_allowed: "Address is not allowed",
incomplete_domain: "Domain name is incomplete"}, 'en')
```
Note: Release 0.1.14 fixed setting error messages by locale.
Also, it will accept a ruby "collected" hash as before,Full translation support would be ideal though.
### Available Configuration Settings
* sha1_secret -
This application-level secret is appended to the email_address to compute
the SHA1 Digest, making it unique to your application so it can't easily be
discovered by comparing against a known list of email/sha1 pairs.* sha256_secret -
This application-level secret is appended to the email_address to compute
the SHA256 Digest, making it unique to your application so it can't easily be
discovered by comparing against a known list of email/sha256 pairs.* munge_string - "*****", the string to replace into munged addresses.
For local part configuration:
* local_downcase: true.
Downcase the local part. You probably want this for uniqueness.
RFC says local part is case insensitive, that's a bad part.* local_fix: true.
Make simple fixes when available, remove spaces, condense multiple punctuations* local_encoding: :ascii, :unicode,
Enable Unicode in local part. Most mail systems do not yet support this.
You probably want to stay with ASCII for now.* local_parse: nil, ->(local) { [mailbox, tag, comment] }
Specify an optional lambda/Proc to parse the local part. It should return an
array (tuple) of mailbox, tag, and comment.* local_format:
* :conventional - word ( puncuation{1} word )*
* :relaxed - alphanum ( allowed_characters)* alphanum
* :standard - RFC Compliant email addresses (anything goes!)* local_size: 1..64,
A Range specifying the allowed size for mailbox + tags + comment* tag_separator: nil, character (+)
Nil, or a character used to split the tag from the mailboxFor the mailbox (AKA account, role), without the tag
* mailbox_size: 1..64
A Range specifying the allowed size for mailbox* mailbox_canonical: nil, ->(mailbox) { mailbox }
An optional lambda/Proc taking a mailbox name, returning a canonical
version of it. (E.G.: gmail removes '.' characters)* mailbox_validator: nil, ->(mailbox) { true }
An optional lambda/Proc taking a mailbox name, returning true or false.* host_encoding: :punycode, :unicode,
How to treat International Domain Names (IDN). Note that most mail and
DNS systems do not support unicode, so punycode needs to be passed.
:punycode Convert Unicode names to punycode representation
:unicode Keep Unicode names as is.* host_validation:
:mx Ensure host is configured with DNS MX records
:a Ensure host is known to DNS (A Record)
:syntax Validate by syntax only, no Network verification
:connect Attempt host connection (Experimental and Dangerous: Do not use)
The :host_timeout setting is the maximum number
of seconds to wait during the :connect validation* host_size: 1..253,
A range specifying the size limit of the host part,* host_allow_ip: false,
Allow IP address format in host: [127.0.0.1], [IPv6:::1]* address_validation: :parts, :smtp, ->(address) { true }
Address validation policy
:parts Validate local and host.
:smtp Validate via SMTP (not implemented, BAD!)
A lambda/Proc taking the address string, returning true or false* address_size: 3..254,
A range specifying the size limit of the complete addressFor provider rules to match to domain names and Exchanger hosts
The value is an array of match tokens.
* host_match: %w(.org example.com hotmail. user*@ sub.*.com)
* exchanger_match: %w(google.com 127.0.0.1 10.9.8.0/24 ::1/64)### Namespace conflict resolution
If your application already uses the `EmailAddress` class name,
it's possible to create an alias prior to loading your code:For a Rails application, you can do this in `config/application.rb`
after the `Bundler.require` line, usually:```ruby
Bundler.require(*Rails.groups)
```Add these lines immediately after that point:
```ruby
EmailAddressValidator = EmailAddress
Object.send(:remove_const, :EmailAddress)
```Then your application loads with your EmailAddress class. You may
then use this gem with `EmailAddressValidator` or whatever name you
gave it above:```ruby
EmailAddressValidator.valid?("[email protected]") # => true
```## Notes
#### Internationalization
The industry is moving to support Unicode characters in the local part
of the email address. Currently, SMTP supports only 7-bit ASCII, but a
new `SMTPUTF8` standard is available, but not yet widely implemented.
To work properly, global Email systems must be converted to UTF-8
encoded databases and upgraded to the new email standards.The problem with i18n email addresses is that support outside of the
given locale becomes hard to enter addresses on keyboards for another
locale. Because of this, internationalized local parts are not yet
supported by default. They are more likely to be erroneous.Proper personal identity can still be provided using
[MIME Encoded-Words](http://en.wikipedia.org/wiki/MIME#Encoded-Word)
in Email headers.#### Email Addresses as Sensitive Data
Like Social Security and Credit Card Numbers, email addresses are
becoming more important as a personal identifier on the internet.
Increasingly, we should treat email addresses as sensitive data. If your
site/database becomes compromised by hackers, these email addresses can
be stolen and used to spam your users and to try to gain access to their
accounts. You should not be storing passwords in plain text; perhaps you
don't need to store email addresses un-encoded either.Consider this: upon registration, store the redacted email address for
the user, and of course, the salted, encrypted password.
When the user logs in, compute the redacted email address from
the user-supplied one and look up the record. Store the original address
in the session for the user, which goes away when the user logs out.Sometimes, users demand you strike their information from the database.
Instead of deleting their account, you can "redact" their email
address, retaining the state of the account to prevent future
access. Given the original email address again, the redacted account can
be identified if necessary.Because of these use cases, the **redact** method on the email address
instance has been provided.## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request#### Project
This project lives at [https://github.com/afair/email_address/](https://github.com/afair/email_address/)
#### Authors
* [Allen Fair](https://github.com/afair) ([@allenfair](https://twitter.com/allenfair)):
I've worked with email-based applications and email addresses since 1999.