You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lately I've been seeing emails that have a line feed separating the user name and email address. This causes email-addresses to return null, even though the email address is valid.
Unfortunately, the rules for whitespace in email addresses (as laid out in rfcs) are arcane and bizarre. It is my understanding that this isn't technically a valid email address, even though to the observer's eye it is obvious how to interpret it as an email address.
The issue is that in the rfcs, only a certain kind of "folding whitespace" is allowed when CRLFs are involved. (see RFC 5322 section 3.2.2, and places where it is used.) The rule is that the whitespace has to be a CRLF, not just LF, and have spaces/tabs on each side. This is silly but there you have it.
Lately I've been seeing emails that have a line feed separating the user name and email address. This causes email-addresses to return null, even though the email address is valid.
The text was updated successfully, but these errors were encountered: