The Daily WTF: Curious Perversions in Information Technology
Welcome to TDWTF Forums Sign in | Join | Help
in Search

The email address you have been using for 10 years is not valid

Last post 12-20-2012 12:39 PM by Sutherlands. 73 replies.
Page 1 of 2 (74 items) 1 2 Next >
Sort Posts: Previous Next
  • 12-14-2012 5:11 PM

    • Zemm
    • Top 50 Contributor
    • Joined on 11-26-2007
    • Gold Coast, Australia
    • Posts 1,168

    The email address you have been using for 10 years is not valid

    I got sick of waiting for Google to sell the Nexus 4 on the Australian Play Store (it oversold-out in 22 minutes on 13 November and has not returned) so I decided to buy it from the US Play Store. The first step involves getting a "US address" and the place I tried to get one is comGateway. Very first form and my email address fails the verification. Note that I don't have anything weird in my address, not even dashes or numbers, but it is in the form of something@example.id.au. I checked the code:
    <input id="freebtn" type="button" value="" size="" align="right" onclick="javascriptcheckRegisterForm()">
    
    So it's on the onclick and not onsubmit...
    function checkRegisterForm(){
    	if(checkData()){
    		registerSubmit();
    		}
    	}
    
    And the relevant lines in checkData():
    reg=new RegExp("^([A-Za-z0-9_-]+\.[A-Za-z0-9_-]+)+@[A-Za-z0-9_-]+\.[A-Za-z]{2,4}$");
    if(!reg.test(content)){
    	content="Please enter a valid email.";
    }
    
    For a site aimed at non-US people, they have never heard of third level domains just baffles the mind!?

    Bonus points for allowing the illegal underscore in the domain part, allowing something@foobar, some&thing@foo^bar, and unsuccessfully trying to block usernames without a dot. (Hint: The regexp never sees the backslash before the dots, so the dot becomes a wildcard. But you can only have one such character on each side of the "@").

    I've got three options:

    • Find somewhere else
    • Use my gmail account (probably that's what they wanted anyway)
    • Run registerSubmit() from the console
    Guess which one worked?
    Filed Under: Can you think of something that talks, other than a person?
  • 12-14-2012 5:17 PM In reply to

    • locallunatic
    • Top 100 Contributor
    • Joined on 05-19-2010
    • (YourLocation==USA-KY?local:MisleadingUsername)
    • Posts 488

    Re: The email address you have been using for 10 years is not valid

    But their checking on your email could have been to protect something later in the workflow from throwing a fit.  I mean yeah, they should allow valid addresses but this could be more of a prevent problems caused by someone else not doing things right rather than a mistake on their part.

  • 12-14-2012 5:38 PM In reply to

    • Zemm
    • Top 50 Contributor
    • Joined on 11-26-2007
    • Gold Coast, Australia
    • Posts 1,168

    Re: The email address you have been using for 10 years is not valid

    No, I ran the JS function, next screen showed me my US address, asking for more information, including my email address again, submitted that fine and it sent me an email (albeit HTML only with the text part "To view the message, please use an HTML compatible email viewer!").
    Filed Under: Can you think of something that talks, other than a person?
  • 12-14-2012 10:46 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    Zemm:
    For a site aimed at non-US people, they have never heard of third level domains just baffles the mind!?

    Even in the US, third-level domains are not that rare in institutional email addresses (for example, last.first@department.university.edu). So wow.

  • 12-15-2012 5:41 AM In reply to

    • Zemm
    • Top 50 Contributor
    • Joined on 11-26-2007
    • Gold Coast, Australia
    • Posts 1,168

    Re: The email address you have been using for 10 years is not valid

    barfoo:
    Even in the US, third-level domains are not that rare in institutional email addresses (for example, last.first@department.university.edu). So wow.
    I was thinking that too. I seem to remember even ISPs doing that, like username@city.rr.com. They included an underscore instead of a dot in the regexp, who knows how long it's been like that?
    Filed Under: Can you think of something that talks, other than a person?
  • 12-15-2012 6:00 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    Zemm:
    But you can only have one such character on each side of the "@"
    You can have more on the left as long as they're separated by alphanumerics.
  • 12-15-2012 7:15 AM In reply to

    • Zemm
    • Top 50 Contributor
    • Joined on 11-26-2007
    • Gold Coast, Australia
    • Posts 1,168

    Re: The email address you have been using for 10 years is not valid

    pjt33:
    Zemm:
    But you can only have one such character on each side of the "@"
    You can have more on the left as long as they're separated by alphanumerics.
    Ah yes, missed the + after the bracket. But it has to be two [a-zA-Z0-9_-] characters between funny characters.

    Side-WTF: in my OP, CS removed the colon after "javascript". We have discussed the redundant "protocol" on an onclick before.

    Filed Under: Can you think of something that talks, other than a person?
  • 12-17-2012 5:14 AM In reply to

    • ender
    • Top 50 Contributor
    • Joined on 04-27-2006
    • Sunny side of the Alps
    • Posts 1,135

    Re: The email address you have been using for 10 years is not valid

    Zemm:
    Bonus points for allowing the illegal underscore in the domain part, allowing something@foobar, some&thing@foo^bar
    You do know that & is valid in the local part of the e-mail address? :)
    (also, IIRC, there used to be a TLD with an MX record, though I don't know if any e-mail address was actually set up)
    Because 10 billion years' time is so fragile, so ephemeral... it arouses such a bittersweet, almost heartbreaking fondness.
  • 12-17-2012 7:25 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    Pretty much anything is allowed in the local part if you look at the RFC for email address format. http://en.wikipedia.org/wiki/Email_address is actually pretty accurate for that sort of information.

  • 12-17-2012 7:51 AM In reply to

    • Zemm
    • Top 50 Contributor
    • Joined on 11-26-2007
    • Gold Coast, Australia
    • Posts 1,168

    Re: The email address you have been using for 10 years is not valid

    ender:
    You do know that & is valid in the local part of the e-mail address? :)
    Yes, but & or ^ is not valid in the domain part. :-P They tried to stop it but double-failed.
    ASheridan2:
    Pretty much anything is allowed in the local part if you look at the RFC for email address format
    They got that by accident, but there's nothing in the regexp to allow the local part to be surrounded by quotes. I have created a table:
    ExampleExpectedWTFRegExp
    niceandsimple@example.comtruetrue
    very.common@example.comtruetrue
    a.little.lengthy.but.fine@dept.example.comtruefalse
    unusual-tld@example.museumtruefalse
    disposable.style.email.with+symbol@example.comtruetrue
    user@[IPv6:2001:db8:1ff::a0b:dbd0]truefalse
    "much.more unusual"@example.comtruefalse
    "very.unusual.@.unusual.com"@example.comtruefalse
    "very.(),:;<>[\".VERY.\"very@\\ \"very\".unusual"@strange.example.comtruefalse
    postbox@com (top-level domains are valid hostnames)truefalse
    !#$%&'*+-/=?^_`{}|~@example.orgtruefalse
    "()<>[:,;@\\\"!#$%&'*+-/=?^_`{}| ~ ? ^_`{}|~.a"@example.orgtruefalse
    ""@example.orgtruefalse
    Abc.example.com (an @ character must separate the local and domain parts)falsefalse
    Abc.@example.com (character dot(.) is last in local part)falsefalse
    Abc..123@example.com (character dot(.) is double)falsefalse
    A@b@c@example.com (only one @ is allowed outside quotation marks)falsefalse (but a@bb@c@example.com would be true)
    a"b(c)d,e:f;gi[j\k]l@example.com (none of the special characters in this local part is allowed outside quotation marks)falsefalse (but if the alphas were doubled it would be true)
    just"not"right@example.com (quoted strings must be dot separated, or the only element making up the local-part)falsetrue
    this is"not\allowed@example.com (spaces, quotes, and backslashes may only exist when within quoted strings and preceded by a backslash)falsetrue
    this\ still\"not\\allowed@example.com (even if escaped (preceded by a backslash), spaces, quotes, and backslashes must still be contained by quotes)falsefalse
    It is impossible to validate all possible email addresses by regexp (while disallowing all possible invalid ones).
    Filed Under: Can you think of something that talks, other than a person?
  • 12-17-2012 7:53 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    Oh probably, that doesn't stop people trying though!

  • 12-17-2012 10:50 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    Zemm:
    It is impossible to validate all possible email addresses by regexp (while disallowing all possible invalid ones).
    That's patently untrue.  You can just create a regex listing all possible e-mail addresses.

  • 12-17-2012 10:51 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    I'm usually a big proponent of "follow standards, even if they have some flaws", but these rules just seems way too overcomplicated (seriously, comments in email addresses? And why isn't ".." allowed?). Is there any real advantage over just saying "allowed characters in the local part are a-zA-Z0-9_.+- and it must have between 1 and 255 characters"?
  • 12-17-2012 11:25 AM In reply to

    Re: The email address you have been using for 10 years is not valid

     Is there any real advantage to limiting the allowed characters in email addresses? What about people with names that aren't just a-z? This kind of thinking is why email address format is in such a mess, developers look at the spec, decide it's too complicated, and then make up their own set of rules that they think seem reasonable based on their experience which doesn't actually see the bigger picture, and end up causing needless limitations.

  • 12-17-2012 12:18 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    It's often the most valuable piece of information collected by the form; also, you want to prevent headaches - for users, for support, and for admins - caused by invalid data making it further in the pipeline.

    I usually validate these with (one or more of any character)@(one or more of any character).(one or more of any character)

    That gets the most blatantly invalid ones without (I think) excluding any valid ones. There are diminishing returns on validating beyond that.

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
  • 12-17-2012 12:54 PM In reply to

    • locallunatic
    • Top 100 Contributor
    • Joined on 05-19-2010
    • (YourLocation==USA-KY?local:MisleadingUsername)
    • Posts 488

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:

    I usually validate these with (one or more of any character)@(one or more of any character).(one or more of any character)

    That gets the most blatantly invalid ones without (I think) excluding any valid ones.

    ThisOneIsTechnicallyValid@com is excluded, but the chance of ever having to deal with that is so low it isn't worth fixing.

  • 12-17-2012 1:17 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    locallunatic:
    But their checking on your email could have been to protect something later in the workflow from throwing a fit.
     

    If skipping a client-side validation check screws up some later server-side process, then they have way more problems on hand than a regex.



    <%= Eval("sig_owner") ?>! <asp:Label runat="server" id="lblGetYourOwn" Text="Get your own!" />
  • 12-17-2012 1:24 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    locallunatic:
    ThisOneIsTechnicallyValid@com is excluded, but the chance of ever having to deal with that is so low it isn't worth fixing.

    Yeah, actually in most cases you wouldn't want to allow that address even if it is technically valid.

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
    Filed under:
  • 12-17-2012 2:38 PM In reply to

    • locallunatic
    • Top 100 Contributor
    • Joined on 05-19-2010
    • (YourLocation==USA-KY?local:MisleadingUsername)
    • Posts 488

    Re: The email address you have been using for 10 years is not valid

    Lorne Kates:
    If skipping a client-side validation check screws up some later server-side process, then they have way more problems on hand than a regex.

    I didn't mean to imply that the check was only done client side, just that the check could be to catch something during submission that would cause a different poorly made system to choke (like some client that sends out emails, too late to fix things at that point so catch it early and plan violence against the makers of the emailer client).

    Filed under: ,
  • 12-18-2012 4:03 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    locallunatic:

    ThisOneIsTechnicallyValid@com is excluded, but the chance of ever having to deal with that is so low it isn't worth fixing.

    Are you sure 'com' is a valid domain? Sure it's a valid TLD, but doesn't it need more than just the TLD?

     

  • 12-18-2012 6:13 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    Wow, all that quoting and backslash escaping in the local part really surprises me.

    Without having read the spec, I had always regarded email addresses as just a special case (i.e. without the pass part) of a generic user:pass@domain URL, where user and pass can be absolutely anything, and have to be percent-encoded.

    Quoting and backslash encoding really doesn't mix well with that concept... WTF specs.

  • 12-18-2012 8:57 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    ASheridan2:

    locallunatic:

    ThisOneIsTechnicallyValid@com is excluded, but the chance of ever having to deal with that is so low it isn't worth fixing.

    Are you sure 'com' is a valid domain? Sure it's a valid TLD, but doesn't it need more than just the TLD?

     

    RFC 822 actually says that you only need to include the leftmost (least-significant) level of the domain part if the rest of it is the same as the sender's address. So, whether "com" is a valid domain name in and of itself or not, according to the RFC alice@example.com should be able to send email to bob@example.com by just specifying "bob@example". I have no idea if any mail server in the world actually allows this sort of thing.
  • 12-18-2012 9:10 AM In reply to

    Re: The email address you have been using for 10 years is not valid

     How would any system determine if an email for alice@example was intended for alice@example.com, or alice@example.net? I dug a little into it and it seems that that is only valid where sending to an email address that shares parts of the right side of the domain in common:

    "For example, if a sender's address is:
    
                     sender@registry-A.registry-1.organization-X
    
            and one recipient's address is:
    
                    recipient@registry-B.registry-1.organization-X
    
            and another's is:
    
                    recipient@registry-C.registry-2.organization-X
    
            then ".registry-1.organization-X" need not be specified in the
            the  message,  but  "registry-C.registry-2"  DOES  have  to be
            specified.  That is, the first two addresses may  be  abbrevi-
            ated, but the third address must be fully specified." 
    So I think it would only be considered a valid email address when testing it against local servers. 

     

  • 12-18-2012 9:33 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    ASheridan2:
    I dug a little into it and it seems that that is only valid where sending to an email address that shares parts of the right side of the domain in common
    ...that would be what I said, yes.

    I'm not saying it's a good idea, just that if you want to be 100% in compliance with RFC 822's address format, you have to allow the domain portion of the address to have only one component.
  • 12-18-2012 11:46 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:

    It's often the most valuable piece of information collected by the form; also, you want to prevent headaches - for users, for support, and for admins - caused by invalid data making it further in the pipeline.

    I usually validate these with (one or more of any character)@(one or more of any character).(one or more of any character)

    That gets the most blatantly invalid ones without (I think) excluding any valid ones. There are diminishing returns on validating beyond that.

    user@[IPv6:2001:db8:1ff::a0b:dbd0]

    The only way to validate an email is to send an email.

  • 12-18-2012 11:53 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    Oh, and while I'm at it.  I had to create an Etsy account a year or so ago to buy something that my wife wanted.  They didn't allow periods in the email on your sign up!  I have no idea if they do now or not, but they said it was for "security".  I can't even think of why that would help, even from an idiot developer's point of view. 
  • 12-18-2012 11:55 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    Sutherlands:
    The only way to validate an email is to send an email.
    There's a difference between validating an email address and validating the format of an email address.

  • 12-18-2012 11:57 AM In reply to

    Re: The email address you have been using for 10 years is not valid

    Sutherlands:
    I can't even think of why that would help, even from an idiot developer's point of view. 
    They were having trouble matching the . with regular expressions

  • 12-18-2012 12:55 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    ASheridan2:

    Sutherlands:
    The only way to validate an email is to send an email.
    There's a difference between validating an email address and validating the format of an email address.

    And since regexes can't do either, the only way to do either is to send an email.
  • 12-18-2012 2:32 PM In reply to

    Re: The email address you have been using for 10 years is not valid

     I think the reason for all that complexity in what's allowed by the standards is the need, at every stage of the standardization process, to preserve compatibility with all the "legacy" address formats that have ever been used before, and might possibly still be in somebody's address; and that's a huge number of formats given that the Internet mail format standards derive in a continuous progression from standards used on various academic and research networks as far back as the early 1970s.

  • 12-18-2012 2:36 PM In reply to

    • Ben L.
    • Top 25 Contributor
    • Joined on 12-22-2010
    • HELP I'M TRAPPED IN A COMMUNITY SERVER FACTORY
    • Posts 1,372

    Re: The email address you have been using for 10 years is not valid

    Sutherlands:
    ASheridan2:

    Sutherlands:
    The only way to validate an email is to send an email.
    There's a difference between validating an email address and validating the format of an email address.

    And since regexes can't do either, the only way to do either is to send an email.
    Regular expressions can validate the format of an email address. For example, email addresses cannot contain newlines and are at least one byte long.
  • 12-18-2012 3:21 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    Sutherlands:
    joe.edwards:

    It's often the most valuable piece of information collected by the form; also, you want to prevent headaches - for users, for support, and for admins - caused by invalid data making it further in the pipeline.

    I usually validate these with (one or more of any character)@(one or more of any character).(one or more of any character)

    That gets the most blatantly invalid ones without (I think) excluding any valid ones. There are diminishing returns on validating beyond that.

    user@[IPv6:2001:db8:1ff::a0b:dbd0]

    The only way to validate an email is to send an email.

    Again, this is another example of a technically valid email address that I would not want polluting our database. If anything, this counterexample encourages me to be less lenient in validation.

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
  • 12-18-2012 3:26 PM In reply to

    • locallunatic
    • Top 100 Contributor
    • Joined on 05-19-2010
    • (YourLocation==USA-KY?local:MisleadingUsername)
    • Posts 488

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:
    Again, this is another example of a technically valid email address that I would not want polluting our database.

    The point was that your original post said that you were using a basic validator and that you thought that it did not exclude valid values.  People were mearly showing things that are valid that you would reject, not that rejecting them isn't acceptable (or at least that isn't what I intended).

    Filed under: ,
  • 12-18-2012 3:28 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:
    Again, this is another example of a technically valid email address that I would not want polluting our database.
    Why?
      <-  I couldn't make my shit work, so here's a Godzilla head.


    "There is no such thing as a diet." - Lorne Kates

  • 12-18-2012 3:32 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    blakeyrat:
    joe.edwards:
    Again, this is another example of a technically valid email address that I would not want polluting our database.
    Why?

    Um, because the domain part is an IP address? Is there a good reason to accept deliberately obfuscated addresses? I can't think of any legitimate reasons to use that format.

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
  • 12-18-2012 3:33 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    locallunatic:

    joe.edwards:
    Again, this is another example of a technically valid email address that I would not want polluting our database.

    The point was that your original post said that you were using a basic validator and that you thought that it did not exclude valid values.  People were mearly showing things that are valid that you would reject, not that rejecting them isn't acceptable (or at least that isn't what I intended).

    You know, I put that parenthetical in there specifically to ward off the pedantic dickweeds.

    I was outlining what I feel is a good way to stop junk email addresses while still allowing legitimate ones. The @com and @[ipv6] examples just made me think, "oh, good, it's doing its job."

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
  • 12-18-2012 3:39 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:
    Um, because the domain part is an IP address?
    Adding the word "um" doesn't allow me to magically read your mind. Why does it matter that it's an IP address?
    joe.edwards:
    Is there a good reason to accept deliberately obfuscated addresses?
    What makes you think it's deliberately obfuscated?
    joe.edwards:
    I can't think of any legitimate reasons to use that format.
    I can't think of any reasons not to. IMPASSE!
      <-  I couldn't make my shit work, so here's a Godzilla head.


    "There is no such thing as a diet." - Lorne Kates

  • 12-18-2012 3:41 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    Sutherlands:
    The only way to validate an email is to send an email.
     

    And even then, not so much.

    Sutherlands:
    They didn't allow periods in the email on your sign up!  I have no idea if they do now or not, but they said it was for "security".  I can't even think of why that would help, even from an idiot developer's point of view. 

    Because any character that isn't alphanumeric or @ can be used to inject teh SQLs! That's why you can't have special characters in your password. For security.

    And runner-up for the dick-punch award: any developer who disables pasting and/or autocomplete on "enter your email" and "enter your email again" fields.

    I'm pasting it into the "again" field because I copied it from the "email" field. And I copied it from the "email" field, because its correct. And I know its correct, because it was autocompleted from the last 500 forms I filled out with a field called "email".

     



    <%= Eval("sig_owner") ?>! <asp:Label runat="server" id="lblGetYourOwn" Text="Get your own!" />
  • 12-18-2012 3:42 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    blakeyrat:
    joe.edwards:
    Um, because the domain part is an IP address?
    Adding the word "um" doesn't allow me to magically read your mind. Why does it matter that it's an IP address?
    joe.edwards:
    Is there a good reason to accept deliberately obfuscated addresses?
    What makes you think it's deliberately obfuscated?
    joe.edwards:
    I can't think of any legitimate reasons to use that format.
    I can't think of any reasons not to. IMPASSE!

    Please, show me one person using that format for their actual email address. Just one. The dorkiest of the nerdiest of the geeks I can dream up would not use that address, and if they did just for street cred, I don't think they'd be the least bit surprised or confused that they couldn't sign up for our newsletter.

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
  • 12-18-2012 3:45 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:
    Please, show me one person using that format for their actual email address. Just one. The dorkiest of the nerdiest of the geeks I can dream up would not use that address, and if they did just for street cred, I don't think they'd be the least bit surprised or confused that they couldn't sign up for our newsletter.
    So what? How would it hurt you to accept his rare email address? Why is it a problem?

    I just want one ACTUAL REASON that isn't based on your knee-jerk reaction or "it's uncommon". One actual reason is all I want.

      <-  I couldn't make my shit work, so here's a Godzilla head.


    "There is no such thing as a diet." - Lorne Kates

  • 12-18-2012 3:48 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    blakeyrat:
    joe.edwards:
    Please, show me one person using that format for their actual email address. Just one. The dorkiest of the nerdiest of the geeks I can dream up would not use that address, and if they did just for street cred, I don't think they'd be the least bit surprised or confused that they couldn't sign up for our newsletter.
    So what? How would it hurt you to accept his rare email address? Why is it a problem?

    I just want one ACTUAL REASON that isn't based on your knee-jerk reaction or "it's uncommon". One actual reason is all I want.

    I gave you an actual reason: it's clearly obfuscated. I cannot verify what domain it belongs to. I can't check to see if it's a duplicate, because you could write the same address multiple ways.

    This is an example of a malicious input, and it's a good thing that validation filters it.

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
  • 12-18-2012 3:51 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:
    Please, show me one person using that format for their actual email address. Just one
     

    Doesn't matter. I'm siding with Blakey on this one. Its a valid address. Maybe someone owns an IP but not a domain name. Easy to imagine in an IPv6 world where EVERYTHING will be routable. Maybe someone is waiting on a domain order to go through. Who knows? It's valid.

    I can't think of a single reason to reject it. It doesn't cause a security hole. Unless your business process is "read out the email address to a typist, who then types it back in, types in the newsletter-- sorry E-lect-tronic newsletter-- to each individual on the E-lect-tronic mailng list-- and she gets easily confused by long strings of numbers".

     



    <%= Eval("sig_owner") ?>! <asp:Label runat="server" id="lblGetYourOwn" Text="Get your own!" />
  • 12-18-2012 3:52 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    Lorne Kates:
    Easy to imagine in an IPv6 world where EVERYTHING will be routable.

    It's also easy to imagine a current world, where the lack of existing IPv6 infrastructure means our mail server can't route this email.

    You know, like I said twice already.

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
  • 12-18-2012 3:58 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:
    I gave you an actual reason: it's clearly obfuscated. I cannot verify what domain it belongs to.
    Who cares what domain it belongs to? Or even if it belongs to a domain? Why does that matter? How does that harm you? You still haven't answered the question, you just keep dropping little hints like this. Just answer the fucking question.
    joe.edwards:
    I can't check to see if it's a duplicate, because you could write the same address multiple ways.
    How do you know this isn't the only valid representation? Not every IP has a DNS entry.
    joe.edwards:
    This is an example of a malicious input,
    How is it malicious?

    Just answer the fucking question already and stop dodging. Or I'll just assume the actual answer is, "joe.edwards is a dumbshit who hasn't spent even 10 milliseconds thinking about the design of his program." Because I suspect that's the actual answer.

      <-  I couldn't make my shit work, so here's a Godzilla head.


    "There is no such thing as a diet." - Lorne Kates

  • 12-18-2012 4:03 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    blakeyrat:
    Just answer the fucking question already and stop dodging. Or I'll just assume the actual answer is, "joe.edwards is a dumbshit who hasn't spent even 10 milliseconds thinking about the design of his program." Because I suspect that's the actual answer.

    If you can't understand why it's a bad thing to accept an email address that we can't send mail to or verify any affiliation with or even check to see if it already exists, then I'm sorry for you. I guess it takes a little more brainpower to see beyond the basic problem of RFC compliance, into what information is actually useful to collect.

    A technically valid address that we can't send mail to is less than worthless to our organization. It's a detriment.

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
  • 12-18-2012 4:09 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:
    because you could write the same address multiple ways
     

    Do you also filter for example@gmail.com and example+YouSuckJoeEdwards@gmail.com?

    Do you also filter for example@domain.com and example@domainalias.com?

    Do you also filter for example@example.com and CatchAll@example.com, both of which route to example@example.com?

    Do you also filter for example@example.com and DistributionListThatExampleIsOn@example.com?

     (Note, if you answered "yes" to any of these, then you and your entire infrastructure is deeply flawed)

    joe.edwards:
    email Can't route IPv6

    Is your email subsystem written in Turbo Pascal?

     



    <%= Eval("sig_owner") ?>! <asp:Label runat="server" id="lblGetYourOwn" Text="Get your own!" />
  • 12-18-2012 4:14 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    Lorne Kates:

    Do you also filter for example@gmail.com and example+YouSuckJoeEdwards@gmail.com?

    Do you also filter for example@domain.com and example@domainalias.com?

    Do you also filter for example@example.com and CatchAll@example.com, both of which route to example@example.com?

    Do you also filter for example@example.com and DistributionListThatExampleIsOn@example.com?

    We're well aware of these problems and actually use a number of heuristics to identify when a user is probably using multiple identities and correlate that data together. The gmail one in particular is easy to correct for, though it's not something that gets caught in client-side validation. Client-side validation is mostly for the user's benefit, to give them immediate feedback on issues that would otherwise cause them to have to go back in the process.

    Lorne Kates:

    joe.edwards:
    email Can't route IPv6

    Is your email subsystem written in Turbo Pascal?

    No, but the network infrastructure here was established before IPv6 was a thing that existed, and no one was inclined to change what worked just fine.

    I spend most of my life pressing buttons to make the pattern of lights change however I want.
  • 12-18-2012 4:39 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    joe.edwards:
    If you can't understand why it's a bad thing to accept an email address that we can't send mail to
    Why not? It's a perfectly valid email address. If you can't send email to it, that's your problem, not your customer's.
    joe.edwards:
    A technically valid address that we can't send mail to is less than worthless to our organization. It's a detriment.
    So fix it. Again, that is your problem: your program is buggy and you're sitting here telling us that your shit don't stink. Fix it.

    You still haven't explained why you believe the email address is obfuscated or how it's a malicious input. While you were failing to answer the basic question you built-up a whole stable of new questions you now need to explain.

      <-  I couldn't make my shit work, so here's a Godzilla head.


    "There is no such thing as a diet." - Lorne Kates

  • 12-18-2012 4:43 PM In reply to

    • locallunatic
    • Top 100 Contributor
    • Joined on 05-19-2010
    • (YourLocation==USA-KY?local:MisleadingUsername)
    • Posts 488

    Re: The email address you have been using for 10 years is not valid

    blakeyrat:
    joe.edwards:
    If you can't understand why it's a bad thing to accept an email address that we can't send mail to
    Why not? It's a perfectly valid email address. If you can't send email to it, that's your problem, not your customer's.
    joe.edwards:
    A technically valid address that we can't send mail to is less than worthless to our organization. It's a detriment.
    So fix it. Again, that is your problem: your program is buggy and you're sitting here telling us that your shit don't stink. Fix it.

    Not being able to send to some addresses is broken, but it may be more cost effective to build validation that doesn't allow things that trigger those bugs than to fix them.  Annoying yes, but it MAY be a valid business decision.

    Filed under: ,
  • 12-18-2012 4:48 PM In reply to

    Re: The email address you have been using for 10 years is not valid

    Yes and it's fine as long as joe.blow there admits it's his product that's in the wrong and the reason that he can't allow those email addresses is because his engineers fucked up when developing it.

    But to say that nothing should accept those email addresses, or that those email addresses are malicious or obfuscated, that's just insane crazytalk.

      <-  I couldn't make my shit work, so here's a Godzilla head.


    "There is no such thing as a diet." - Lorne Kates

Page 1 of 2 (74 items) 1 2 Next >
Powered by Community Server (Non-Commercial Edition), by Telligent Systems