We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to RFC-2821, page 54 the character limits are as follows: path: 256 local-part: 64 domain: 255
I propose the following changes:
index.js line 13: if(email.length>256) line 26: if(domainParts.some(function(part) { return part.length>255; }))
The element separator (@) is included in the total length of the path
The text was updated successfully, but these errors were encountered:
Thanks for suggestion @kdr1 . will do
Sorry, something went wrong.
No branches or pull requests
According to RFC-2821, page 54 the character limits are as follows:
path: 256
local-part: 64
domain: 255
I propose the following changes:
index.js
line 13: if(email.length>256)
line 26: if(domainParts.some(function(part) { return part.length>255; }))
The element separator (@) is included in the total length of the path
The text was updated successfully, but these errors were encountered: