Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

RFCs 5321, 5322 and 6531 have complex rules for validating email addresses. They:

  • allow creating comments inside email address
  • offer complicated restriction rules for symbols: "() ,:;<>@[\]
  • treat postmaster localpart as case-insensetive but all other as case-sensitive
  • allow groups of email addresses

Task of validating email address according to RFCs can't be performed using regexes

Most of these rules weren't supported by major email providers by the time of writing those RFCs and email addresses containing most of special symbols are disallowed.

What was the reason for creating so complex rules for email addresses in new RFCs?

share|improve this question
Because RFCs are supposed to cover all edge cases, not just "major providers"? – ceejayoz Mar 30 '12 at 21:20

closed as off topic by bernie, ceejayoz, jasonbar, Don Roby, Graviton Mar 31 '12 at 3:25

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

The only sure way to see if a supplied email address is genuine is to send an email to it and see if the user recieves it. The one useful check that can be performed on an address is to check that the email address is syntactically valid. That is what this module does.

Systems that send mail must be capable of handling outgoing mail for all valid addresses. Contrary to the relevant standards, some defective systems treat certain legitimate addresses as invalid and fail to handle mail to these addresses. Hotmail, for example, refuses to send mail to any address containing any of the following standards-permissible characters: !#$%*/?^`{|}~

Just different levels of standards, where some are very strict, therefore complex.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.