How far should one take e-mail address validation? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T18:24:49Zhttp://stackoverflow.com/feeds/question/3232http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation24How far should one take e-mail address validation?Mike Tomasello2008-08-06T09:51:55Z2009-07-11T03:47:33Z
<p>I'm wondering how far people should take the validation of e-mail address. My field is primarily web-development, but this applies anywhere.</p>
<p>I've seen a few approaches:</p>
<ul>
<li>simply checking if there is an "@" present, which is dead simply but of course not that reliable.</li>
<li>a more complex regex test for standard e-mail formats</li>
<li>a <a href="http://code.iamcal.com/php/rfc822/full_regexp.txt" rel="nofollow">full regex</a> against <a href="http://www.faqs.org/rfcs/rfc2822.html" rel="nofollow">RFC 2822</a> - the problem with this is that often an e-mail address might be valid but it is probably not what the user meant </li>
<li>DNS validation</li>
<li>SMTP validation</li>
</ul>
<p>As many people might know (but many don't), e-mail addresses can have a lot of strange variation that most people don't usually consider (see <a href="http://www.faqs.org/rfcs/rfc2822.html" rel="nofollow">RFC 2822 3.4.1</a>), but you have to think about the goals of your validation: are you simply trying to ensure that an e-mail address can be sent to an address, or that it is what the user probably meant to put in (which is unlikely in a lot of the more obscure cases of otherwise 'valid' addresses).</p>
<p>An option I've considered is simply giving a warning with a more esoteric address but still allowing the request to go through, but this does add more complexity to a form and most users are likely to be confused.</p>
<p>While DNS validation / SMTP validation seem like no-brainers, I foresee problems where the DNS server/SMTP server is temporarily down and a user is unable to register somewhere, or the user's SMTP server doesn't support the required features.</p>
<p>How might some experienced developers out here handle this? Are there any other approaches than the ones I've listed?</p>
<p>Edit: I completely forgot the most obvious of all, sending a confirmation e-mail! Thanks to answerers for pointing that one out. Yes, this one is pretty foolproof, but it does require extra hassle on the part of everyone involved. The user has to fetch some e-mail, and the developer needs to remember user data before they're even confirmed as valid. </p>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3236#323613Answer by GateKiller for How far should one take e-mail address validation?GateKiller2008-08-06T09:54:14Z2008-08-06T09:54:14Z<p>There is no 100% reliable way of confirming a valid email address other than sending an email to user and and waiting for a response, like most forums.</p>
<p>I would go with the simple "@" validation rule and then email the user to confirm their email address.</p>
<p>Although, this is my personal opinion... I await other suggestions.</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3237#32371Answer by Hazar for How far should one take e-mail address validation?Hazar2008-08-06T09:55:01Z2008-08-06T09:55:01Z<p>I think it depends on what context you're using the email for. More serious projects require stricter validation but I think for most things sending an email to the provided address with a conformation link will ensure the email address is valid.</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3238#323810Answer by superjoe30 for How far should one take e-mail address validation?superjoe302008-08-06T09:55:18Z2008-08-06T09:55:18Z<p>You're best off just checking for simple things like @ and . in JavaScript, and then actually send them a verification to their email. If they verify their account, you have yourself a valid email address. That way you know for sure you have a working address, and you don't have to be too bossy in the form.</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3239#323917Answer by Peter Burns for How far should one take e-mail address validation?Peter Burns2008-08-06T09:57:01Z2008-08-06T09:57:01Z<p>One suggestion: don't reject addresses with a + in them. It's annoyingly common to reject them, but it's a valid character, and gmail users can use address+label@gmail.com to label and sort incoming mail more easily.</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3244#32441Answer by Yaakov Ellis for How far should one take e-mail address validation?Yaakov Ellis2008-08-06T10:05:15Z2008-08-06T10:11:18Z<p>Depends on the goal. If you are an ISP and you need to validate that users are creating valid email addresses, go for the Regex that validates against everything possible. If you just want to catch user errors, how about the following pattern:</p>
<p>[All Characters, no spaces] @ [letters and numbers] (.[letters and numbers])
where the final group appears at least one time.</p>
<p>The RegEx for this would appear something like this:</p>
<pre><code>[\S]+@[\w]+(.[w])+
</code></pre>
<p>And then send a confirmation email to be sure.</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3259#32592Answer by Jeff Atwood for How far should one take e-mail address validation?Jeff Atwood2008-08-06T10:20:36Z2008-08-06T10:20:36Z<p><a href="http://www.regexbuddy.com/" rel="nofollow">RegexBuddy</a> offers the following email-related regular expressions from its library:</p>
<p>Email address (basic)</p>
<pre><code>\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b<br></code></pre>
<p>Email address (RFC 2822, simplified)</p>
<pre><code>[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?<br></code></pre>
<p>But I tend to agree with Peter and SuperJoe's responses; the only real "testing" is actually sending a validation email.</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3263#32635Answer by Mike Tomasello for How far should one take e-mail address validation?Mike Tomasello2008-08-06T10:24:57Z2008-08-06T10:24:57Z<p>On consideration from the answers (since I completely forgot about confirmation e-mails) it seems to me like a suitable compromise for a low-friction solution would be to:</p>
<ol>
<li>Use regex to check that the e-mail address looks valid, and give a warning if it is more obscure but avoid rejecting outright.</li>
<li>Use SMTP validation to ensure that the e-mail address is valid.</li>
<li>If SMTP validation <em>fails</em> then -- and <em>only then</em> -- use a confirmation e-mail as a last resort. Confirmation e-mails seem to require too much interaction outside of your application for them to be considered low friction, but they are a perfect fallback.</li>
</ol>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3268#32681Answer by Yaakov Ellis for How far should one take e-mail address validation?Yaakov Ellis2008-08-06T10:32:15Z2008-08-06T10:32:15Z<p>@<a href="http://beta.stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation#3263" rel="nofollow">Mike</a> - I think that part of the reason why confirmation emails are sent is not only to ensure that the email address is valid, but that it is accessible by the user who submitted it. A person could easily put in a one-letter typo in the email address that would lead to a different, valid email address, but that would still be an error as it would be the <em>wrong</em> address.</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3270#32700Answer by Mike Tomasello for How far should one take e-mail address validation?Mike Tomasello2008-08-06T10:36:05Z2008-08-06T10:40:12Z<p>@<a href="http://beta.stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation#3268" rel="nofollow">Yaakov</a> (could reply do with some sort of 'replying' here)</p>
<blockquote>
<p>I think that part of the reason why confirmation emails are sent is not only to ensure that the email address is valid, but that it is accessible by the user who submitted it. A person could easily put in a one-letter typo in the email address that would lead to a different, valid email address, but that would still be an error as it would be the wrong address.</p>
</blockquote>
<p>I concur, but I'm not sure it's worth it. We also have confirmation fields for that purpose (repeating your e-mail address again). Another situation where the type of site might warrant different approaches.</p>
<p>Additionally, sending a confirmation e-mail itself gives no way of indication to the original user that the address they entered was wrong. After not receiving the confirm e-mail they may just assume your app/site is faulty; at least by allowing the user to immediately start using their account they could correct their e-mail address, particularly if it is displayed in a suitably obvious place.</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3377#33777Answer by aardvark for How far should one take e-mail address validation?aardvark2008-08-06T13:38:48Z2008-08-06T13:38:48Z<P>Another weakness of using a regex for email validation is that it's almost impossible to catch all the valid <A href="http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains" rel="nofollow">top-level domains</A> while rejecting all the invalid ones.</P>
<P>For instance, the basic email regex in Jeff Atwood's reply:</P>
<BLOCKQUOTE>
<P>\b[A-Z0-9._%+-]+@[A-Z0-9.-]+.[A-Z]{2,4}\b</P></BLOCKQUOTE>
<P>will accept any TLD of two to four characters. So, for example, .spam will be accepted, but .museum and .travel (both valid TLDs) will be rejected.</P>
<P>Just one more reason it's better to just look for the @, and send a confirmation email.</P>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/3417#341715Answer by jj33 for How far should one take e-mail address validation?jj332008-08-06T14:02:00Z2008-08-06T14:02:00Z<p>In your post it seems that when you say "SMTP validation" you mean connecting to the server and trying a RCPT TO to see if it's accepted. Since you differentiate it from actually sending a confirmation email, I assume you want to do it inline with the user actions. In addition to problems like network issues, DNS failures, etc, gray listing can wreak havoc with this method. Method's vary, but essentially gray listing always defers the first attempt to deliver to recipient per connecting IP. As I said, this can vary, some hosts might reject invalid addresses at first attempt and only defer valid addresses, but there's no reliable way to sort out the different implementations programmatically.</p>
<p>The only way you'll ever be sure that an address is valid and is submitted by its owner who really does want it used for your application is to send a verification email. Well, as long as it doesn't get spam filtered I guess =).</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/5311#53110Answer by Kevin for How far should one take e-mail address validation?Kevin2008-08-07T21:02:37Z2008-12-25T01:23:14Z<p>All the regex validation in the world won't prevent someone from entering an incorrect or fake email address. It's just annoying, really.</p>http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/44086#440861Answer by Robert J. Walker for How far should one take e-mail address validation?Robert J. Walker2008-09-04T16:08:04Z2008-09-04T16:08:04Z<p>The most complete and accurate regex I've ever encountered for email validation is the one documented <a href="http://www.leshazlewood.com/?p=5" rel="nofollow">here</a>. It is not for the faint of heart; it's complicated enough that it's broken into parts to make it easier for humans to parse (sample code is in Java). But in cases where going all the way with validation is merited, I don't think it gets much better.</p>
<p>In any case, I would suggest that you use unit testing to confirm that your expression covers the cases that you feel are important. That way, as you dink around with it, you can be sure that you haven't broken some case that worked before.</p>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/61759#617591Answer by bmb for How far should one take e-mail address validation?bmb2008-09-15T00:35:33Z2008-09-15T00:35:33Z<p>I've worked at 4 different companies where someone at the help desk got yelled at by someone named O'Malley or O'Brien or some other e-mail address with an apostrophe. As suggested previously, not all regex's will catch everything, but save yourself some hassle and accept an apostrophe without generating a warning.</p>
<p>--<br />
bmb</p>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/61765#617651Answer by warren_s for How far should one take e-mail address validation?warren_s2008-09-15T00:46:31Z2008-09-15T00:46:31Z<p>Whatever you choose, I think you need to err on the side of believing that 99% of the time, the user <strong>does</strong> actually know what their email address is. As someone from Australia, I still find very occasionally an oh-so-clever email validation that tells me that I can't possibly have a .com.au domain. It used to happen a lot more in the early days of the internet mind you.</p>
<p>Sending a confirmation email these days is acceptable to users, and is also useful in terms of opt-in as well as validating their supplied address.</p>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/61767#617670Answer by Adam Davis for How far should one take e-mail address validation?Adam Davis2008-09-15T00:47:58Z2008-09-15T00:47:58Z<p><strong>Horses for courses.</strong></p>
<p>All those are valid, complete email verification systems in and of themselves, and for a given website one will be more appropriate (or as good as is warranted) than the others. In many cases several steps of verification may be useful.</p>
<p>If you're developing a website for a bank, you're going to want snail mail or phone verification on top of all these.</p>
<p>If you're developing a website for a contest you might not want any of them - verify the emails in post processing and if one fails it's too bad for the person who entered it - you might value server performance given a huge crush of people (TV contest, for instance) over making sure that everyone gets validated correctly inline.</p>
<h1>How far should one take email verification? </h1>
<h1><em>As far as necessary and warranted.</em></h1>
<p><em>And no further (KISS)</em></p>
<p>-Adam</p>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/61770#617700Answer by jodonnell for How far should one take e-mail address validation?jodonnell2008-09-15T00:53:58Z2008-09-15T00:53:58Z<p>I've seen sites that also guard against people using temporary throwaway spam bucket sites like <a href="http://mailinator.com" rel="nofollow">Mailinator</a> or <a href="http://mytrashmail.com/" rel="nofollow">MyTrashMail</a>, which get around the confirmation e-mail thing. I'm not saying you should be filtering those out, I'm just saying.</p>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/293129#2931290Answer by CesarB for How far should one take e-mail address validation?CesarB2008-11-15T22:11:21Z2008-11-15T22:11:21Z<p>On some sites developed at places I have worked at, we have always used confirmation emails. However, it was surprisingly common for the users to mistype their email address in ways that could not possibly have worked, and then keep waiting for the confirmation email which would not come. Adding ad-hoc code (or, for the domain name part, DNS verification) to warn the user in these cases could be a good idea.</p>
<p>The common cases I have seen:</p>
<ul>
<li>Dropping a letter on the middle of the domain name, or several other simple typo variants.</li>
<li>TLD confusion (for instance, adding a <code>.br</code> to a <code>.com</code> domain, or dropping the <code>.br</code> from a <code>.com.br</code> domain).</li>
<li>Adding a <code>www.</code> at the beginning of the local part of an email address (I am not making this up; I saw <em>several</em> email addresses of the form <code>www.username@example.com</code>).</li>
</ul>
<p>There were even more bizarre cases; things like a complete <em>domain name</em> as the local part, addresses with two <code>@</code> (something like <code>username@domain.tld@example.com</code>), and so on.</p>
<p>Of course, most of them were still valid RFC-822 addresses, so <em>technically</em> you could just let the MTA deal with them. However, warning the user that the email address entered is quite possibly bogus can be helpful, especially if your target audience is not very computer literate.</p>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/300862#3008624Answer by some for How far should one take e-mail address validation?some2008-11-19T02:40:32Z2008-11-19T02:40:32Z<p>With international domain names <strong>almost</strong> everything is possible:</p>
<ul>
<li>Håkan.Söderström@malmö.se</li>
<li>punnycode@XN--0ZWM56D.XN--HGBK6AJ7F53BBA</li>
<li>试@例子.测试.مثال.آزمایشی</li>
</ul>
<p>If you want to do any tests you should first convert it to punycode.</p>
<p>Without punycode all you should do is to test that there:</p>
<ul>
<li>is at least one @</li>
<li>is at least one character in the local part</li>
<li>is at least one dot in the domain part</li>
<li>is at least four characters in the domain (assuming that no-one has an address at the tld, that the tld is at least 2 chars)</li>
</ul>
<p>Here is the code:</p>
<pre><code>function isEmail(address) {
var pos = address.lastIndexOf("@");
return pos > 0 && (address.lastIndexOf(".") > pos) && (address.length - pos > 4);
}
</code></pre>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/575166#5751663Answer by Dominic Sayers for How far should one take e-mail address validation?Dominic Sayers2009-02-22T16:29:16Z2009-02-22T16:29:16Z<p>Use an open-source validator which doesn't give false negatives. Zero effort for you and robust validation for your app.</p>
<p>I've now collated test cases from Cal Henderson, Dave Child, Phil Haack, Doug Lovell and RFC 3696. 158 test addresses in all.</p>
<p>I ran all these tests against all the validators I could find. The comparison is here: <a href="http://www.dominicsayers.com/isemail" rel="nofollow">http://www.dominicsayers.com/isemail</a></p>
<p>I'll try to keep this page up-to-date as people enhance their validators. Thanks to Cal, Dave and Phil for their help and co-operation in compiling these tests and constructive criticism of <a href="http://code.google.com/p/isemail/source/browse/trunk/is_email.php" rel="nofollow">my own validator</a>.</p>
<p>People should be aware of the <a href="http://www.rfc-editor.org/errata_search.php?rfc=3696" rel="nofollow">errata against RFC 3696</a> in particular. Three of the canonical examples are in fact invalid addresses. And the maximum length of an address is 254 or 256 characters, <strong>not</strong> 320.</p>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/575269#5752690Answer by Dave Sherohman for How far should one take e-mail address validation?Dave Sherohman2009-02-22T17:18:10Z2009-02-22T17:18:10Z<p>What are you trying to catch in your email validation?</p>
<p>Regex validation of email addresses can, at best, verify that the address is syntactically correct and relatively plausible. It also has the hazard (as already mentioned many times) of possibly rejecting actual, deliverable addresses if the regex isn't quite correct.</p>
<p>SMTP verification can determine that the address is deliverable, subject to the limitations imposed by greylisting or servers which are configured to give out as little information as possible about their users. You have no way of knowing whether the MTA has only claimed to accept mail for a bogus address, then just dropped it on the floor as part of an anti-spam strategy.</p>
<p>Sending a confirmation message, though, is the <em>only</em> way to verify that an address belongs to the user who entered it. If I'm filling out your form, I can quite easily tell you that my email address is <code>president@whitehouse.gov</code>. A regex will tell you it's syntactically valid, an SMTP RCPT TO will tell you it's a deliverable address, but it sure as hell ain't <em>my</em> address.</p>
http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/816785#8167851Answer by Webber for How far should one take e-mail address validation?Webber2009-05-03T10:55:15Z2009-05-03T10:55:15Z<p>You could take email validation still further to actually test if a mailbox exists. This technique has its drawbacks (development time and also possibility of getting blacklisted for misuse). <a href="http://www.webdigi.co.uk/blog/2009/how-to-check-if-an-email-address-exists-without-sending-an-email/" rel="nofollow">http://www.webdigi.co.uk/blog/2009/how-to-check-if-an-email-address-exists-without-sending-an-email/</a></p>