User Dominic Sayers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T22:27:06Zhttp://stackoverflow.com/feeds/user/63349http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1547899/which-characters-make-a-url-invalid/1840770#18407701Answer by Dominic Sayers for Which characters make a url invalid?Dominic Sayers2009-12-03T15:46:05Z2009-12-03T15:51:29Z<p>In your supplementary question you asked if <code>www.example.com/file[/].html</code> is a valid URL.</p>
<p>That URL isn't valid because a URL is a type of URI and a valid URI must have a scheme like <code>http:</code> (see <a href="http://tools.ietf.org/html/rfc3986" rel="nofollow">RFC 3986</a>).</p>
<p>If you meant to ask if <code>http://www.example.com/file[/].html</code> is a valid URL then the answer is still no because the square bracket characters aren't valid there.</p>
<p>The square bracket characters are reserved for URLs in this format: <code>http://[2001:db8:85a3::8a2e:370:7334]/foo/bar</code> (i.e. an IPv6 literal instead of a host name)</p>
<p>It's worth reading RFC 3896 carefully if you want to understand the issue fully.</p>
http://stackoverflow.com/questions/386294/maximum-length-of-a-valid-email-id/574698#57469811Answer by Dominic Sayers for Maximum length of a valid email idDominic Sayers2009-02-22T10:28:47Z2009-10-25T15:55:47Z<p>The original version of RFC 3696 did indeed say 320 was the maximum length, but John Klensin subsequently accepted this was WRONG.</p>
<p>The maximum length is specified in <a href="http://tools.ietf.org/html/rfc5321#section-4.5.3" rel="nofollow">RFC 5321</a>: "The maximum total length of a reverse-path or forward-path is <strong>256 characters</strong>"</p>
<p>RFC 3696 was corrected <a href="http://www.rfc-editor.org/errata%5Fsearch.php?rfc=3696" rel="nofollow">here</a></p>
<p>I note for the record that John Klensin may actually be wrong in his correction: a Path is defined as</p>
<pre><code>Path = "<" [ A-d-l ":" ] Mailbox ">"
</code></pre>
<p>So the Mailbox element (i.e. the email address) has angle brackets around it to form a Path, so the Mailbox must be no more than 254 characters to keep the path under 256.</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 my own validator.</p>
<p>People should be aware of the <a href="http://www.rfc-editor.org/errata%5Fsearch.php?rfc=3696" rel="nofollow">errata against RFC 3696</a> in particular. Three of the canonical examples are in fact invalid addresses.</p>
http://stackoverflow.com/questions/994102/domnode-to-domelement-in-php/1079025#10790250Answer by Dominic Sayers for DOMNode to DOMElement in phpDominic Sayers2009-07-03T11:51:27Z2009-07-03T11:51:27Z<p>You don't need to do any explicit typecasting, just check if your DOMNode object has a nodeType of <code>XML_ELEMENT_NODE</code>.</p>
<p>PHP will be perfectly happy with this.</p>
<p>If you use <a href="http://www.icosaedro.it/phplint" rel="nofollow">PHPLint</a> to check your code you will notice that PHPLint complains about using <code>getElementsByTagName</code> on a DOMNode object. To get around this you need to jump through the following hoop:</p>
<pre><code>/*.object.*/ $obj = $node;
$element = /*.(DOMElement).*/ $obj;
</code></pre>
<p>Then you will have a $element variable of the correct type and no complaints from PHPLint.</p>
http://stackoverflow.com/questions/455303/what-alternatives-are-there-for-phplint-that-run-under-windows/1028561#10285610Answer by Dominic Sayers for What alternatives are there for PHPLint that run under Windows?Dominic Sayers2009-06-22T17:46:51Z2009-06-22T17:46:51Z<p>PHPLint now runs under Windows. The download page is currently here: <a href="http://www.icosaedro.it/phplint/download-windows.html" rel="nofollow">http://www.icosaedro.it/phplint/download-windows.html</a></p>
<p>It's a command-line utility, but there's also a little GUI tool which requires a separate download of the Tcl/Tk interpreter from <a href="http://www.tcl.tk" rel="nofollow">http://www.tcl.tk</a></p>
http://stackoverflow.com/questions/211842/why-are-people-using-regexp-for-email-and-other-complex-validation/591423#5914232Answer by Dominic Sayers for Why are people using regexp for email and other complex validation?Dominic Sayers2009-02-26T16:53:55Z2009-02-26T16:53:55Z<p>I don't believe correct email validation can be done with a single regular expression (now there's a challenge!). One of the issues is that comments can be nested to an arbitrary depth in both the local part and the domain.</p>
<p>If you want to validate an address against RFCs 5322 and 5321 (the current standards) then you'll need a procedural function to do so.</p>
<p>Fortunately, this is a commodity problem. Everybody wants the same result: RFC compliance. There's no need for anybody to write this code ever again once it's been solved by an open source function.</p>
<p>Check out some of the alternatives here: <a href="http://www.dominicsayers.com/isemail/" rel="nofollow">http://www.dominicsayers.com/isemail/</a></p>
<p>If you know of another function that I can add to the head-to-head, let me know.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/532972#53297222Answer by Dominic Sayers for What is the best regular expression for validating email addresses?Dominic Sayers2009-02-10T16:13:28Z2009-02-26T16:46:25Z<p>I've now collated test cases from Cal Henderson, Dave Child, Phil Haack, Doug Lovell, RFC5322 and RFC 3696. 222 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, Paul 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%5Femail.php" rel="nofollow">my own validator</a>.</p>
<p>People should be aware of the <a href="http://www.rfc-editor.org/errata%5Fsearch.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/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/297420/list-of-email-addresses-that-can-be-used-to-test-a-javascript-validation-script/575161#5751610Answer by Dominic Sayers for list of email addresses that can be used to test a javascript validation script.Dominic Sayers2009-02-22T16:26:45Z2009-02-22T16:26:45Z<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/156430/regexp-recognition-of-email-address-hard/532990#5329902Answer by Dominic Sayers for Regexp recognition of email address hard?Dominic Sayers2009-02-10T16:16:08Z2009-02-22T16:24:50Z<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/465866/why-doesnt-my-email-regex-for-php-work/532967#5329670Answer by Dominic Sayers for Why doesn't my email regex for PHP work?Dominic Sayers2009-02-10T16:12:24Z2009-02-22T16:24:15Z<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/161342/is-there-a-php-library-for-email-address-validation/532965#5329653Answer by Dominic Sayers for Is there a php library for email address validation?Dominic Sayers2009-02-10T16:11:47Z2009-02-22T16:22:58Z<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/386294/maximum-length-of-a-valid-email-id/386322#386322Comment by Dominic Sayers on Maximum length of a valid email idDominic Sayers2009-10-25T16:00:21Z2009-10-25T16:00:21ZMore here: <a href="http://www.dominicsayers.com/isemail" rel="nofollow">dominicsayers.com/isemail</a>http://stackoverflow.com/questions/386294/maximum-length-of-a-valid-email-id/452085#452085Comment by Dominic Sayers on Maximum length of a valid email idDominic Sayers2009-10-25T15:59:30Z2009-10-25T15:59:30ZRFC 821 was suerseded by RFC 2821 which was then superseded by RFC 5321. This was back before either of us had a goatee.
See <a href="http://www.dominicsayers.com/isemail" rel="nofollow">dominicsayers.com/isemail</a>http://stackoverflow.com/questions/386294/maximum-length-of-a-valid-email-id/386322#386322Comment by Dominic Sayers on Maximum length of a valid email idDominic Sayers2009-10-25T15:58:13Z2009-10-25T15:58:13ZBut you will be sending the email over SMTP, so the address has to fit into the forward-path field, which has a maximum length of 256 characters.
Also note that it will have angle brackets round it in this field so that actual address (including the @) can be no more than 254 characters.http://stackoverflow.com/questions/386294/maximum-length-of-a-valid-email-id/386302#386302Comment by Dominic Sayers on Maximum length of a valid email idDominic Sayers2009-10-25T15:53:45Z2009-10-25T15:53:45ZHe may mean this: <a href="http://www.dominicsayers.com/isemail" rel="nofollow">dominicsayers.com/isemail</a>http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201378#201378Comment by Dominic Sayers on What is the best regular expression for validating email addresses?Dominic Sayers2009-04-08T15:56:16Z2009-04-08T15:56:16ZThe linux journal article you mention is factually wrong in several respects. In particular Lovell clearly hasn't read the errata to RFC3696 and repeats some of the errors in the published version of the RFC.
More here: <a href="http://www.dominicsayers.com/isemail" rel="nofollow">dominicsayers.com/isemail</a>