Everyone knows what an email address is, right? (Quiz)
-
The routing feature is so cursed XD
-
Average
Me too.
I scored 11/21 on https://e-mail.wtf/ and all I got was this lousy text to share on social media.
-
This post did not contain any content.
I lost it at the fork bomb. I mean I hit valid because there was no way it was on the and not valid, but there's no way i'd have expected that. after that I just kept guessing the most stupid answer and did pretty well
-
What if we
@
..? ðŸ¤
Now i just need a registrar that allows emoji...
-
Presumably the space between quotes is "escaped", meaning it's supposed to act like any other character.
Yeah they're processed, but not passed through.
-
This post did not contain any content.
Let us recite the email validator’s oath:
If it has something before the
@
, something between the@
and the.
, and something after the.
, it’s valid enough. -
This post did not contain any content.
I scored 13/21 on https://e-mail.wtf/ and all I got was this lousy text to share on social media.
-
This post did not contain any content.
I scored 18/21 on https://e-mail.wtf/ and all I got was this lousy text to share on social media.
-
This post did not contain any content.
12/21
are things that are considered out of current spec really "valid" though?
-
Now i just need a registrar that allows emoji...
Self-host it.
People may find that weird, however.
-
12/21
are things that are considered out of current spec really "valid" though?
And is it really valid if my email provider doesn't accept it? If it's not universally accepted or standard, then it doesn't matter if it's technically valid.
-
I didn't understand this one. How do you have a no dot domain? Like you need to distinguish from example.com or example.wtf
Edit: do you mean if you own
.google
you can have youremail@google
address?Yes, the top-level domain is still just a domain. I'm not aware of any public Internet services which are reachable from a TLD directly, and it's strongly discouraged by ICANN, but there isn't any technical limitation preventing e.g. someone at Verisign from setting up
example@com
. -
But they will work, and according to the spec, you have to build your system so that it can handle those cases. Obsolete doesn't mean incorrect or invalid, just a "you shouldn't do this any more".
Obsolete Syntax
Earlier versions of this standard allowed for different (usually more
liberal) syntax than is allowed in this version. Also, there have
been syntactic elements used in messages on the Internet whose
interpretation have never been documented. Though some of these
syntactic forms MUST NOT be generated according to the grammar in
section 3, they MUST be accepted and parsed by a conformant receiver.Well shit, yeah, that "MUST be accepted and parsed" is pretty explicit. That sucks. What is even the point of revising standards? How the fuck do we ever get rid of some of these bad ideas?
-
I gave up when I got like 5 wrong. I've ran mail servers for decades, most of the invalid "valids" would get rejected by any mailservers I've administered.
And for a good reason.
-
And is it really valid if my email provider doesn't accept it? If it's not universally accepted or standard, then it doesn't matter if it's technically valid.
The RFC is the standard.
-
I got 14/21
Me too and it said that is the amount you'd get if you just picked "valid" for every response. Lmao
-
This post did not contain any content.
I scored 14/21 on https://e-mail.wtf/ and all I got was this lousy text to share on social media.
I actually died at the poop emoji one. Actually amazing awareness to test for that
-
This post did not contain any content.wrote last edited by [email protected]
Well... like Bill Clinton said, it depends on what the definition of "is" is.
-
Now i just need a registrar that allows emoji...
wrote last edited by [email protected]Any should. Any unicode is converted to alphabetical anyways, through "xn--" + a punycode conversion. Which is actually fairly important for places that don't use the Latin alphabet.
See http://xn-bdk.gay/, which is the same as http://ツ.gay/
(Someone set this up on 196 a while ago, they said they were using Namecheap)
-
You shouldn’t be validating emails yourself anyway. Use a library or check for only the
@
and then send an email confirmation.wrote last edited by [email protected]Use a library
Please, no. If someone wrote email address "validation" complex enough to warrant a library, then their code is almost certainly wrong.
or check for only the @ and then send an email confirmation.
Yes. Do that.
If your boss demands a more detailed check at input time, then make it display warnings, not errors, and continue to the confirmation sending step if the user chooses to ignore the warning.