I also reached out to them on Twitter but they directed me to this form. I followed up with them on Twitter with what happened in this screenshot but they are now ignoring me.

    • jwt@programming.dev
      link
      fedilink
      English
      arrow-up
      4
      ·
      9 months ago

      Probably, from what I can see the address in question isn’t really that exotic. but an email regex that validates 100% correctly is near impossible. And then you still don’t know if the email address actually exists.

      I’d just take the user at their word and send an email with an activation link to the address that was supplied. If the address is invalid, the mail won’t get delivered. No harm done.

      • Echo Dot@feddit.uk
        link
        fedilink
        English
        arrow-up
        0
        ·
        9 months ago

        The best of validation is just to confirm that the email contains a @ and a . and if it does send it an email with a confirmation link.

        • __dev@lemmy.world
          link
          fedilink
          English
          arrow-up
          0
          ·
          9 months ago

          TLDs are valid in emails, as are IP V6 addresses, so checking for a . is technically not correct. For example a@b and a@[IPv6:2001:db8::1] are both valid email addresses.

          • HotChickenFeet@sopuli.xyz
            link
            fedilink
            English
            arrow-up
            0
            ·
            9 months ago

            I feel like using a@[IPv6:2001:db8::1] is asking for trouble everywhere online.

            But its tempting to try out, not many people would expect this.

            • Crass Spektakel@lemmy.world
              link
              fedilink
              English
              arrow-up
              0
              ·
              9 months ago

              try user@123.45.67.89.in-addr.arpa or user@d.e.a.d.b.e.e.f.0.1.2.3.4.5.6.7.8.9.a.b.c.d.e.f.0.0.0.0.1.2.3.4.ip6.arpa just for the giggles. Mix it with BANG-Adressing:

              123.45.67.89.in-addr.arpa!d.e.a.d.b.e.e.f.0.1.2.3.4.5.6.7.8.9.a.b.c.d.e.f.0.0.0.0.1.2.3.4.ip6.arpa!user

        • PoolloverNathan@programming.dev
          link
          fedilink
          English
          arrow-up
          0
          ·
          9 months ago

          TLDs could theoretically have MX records too! Email addresses as specified also support IPv6 addresses! The regex would need to be .+@.+ and at this point it’s probably easier to just send an email.

          • JackbyDev@programming.dev
            link
            fedilink
            English
            arrow-up
            0
            ·
            9 months ago

            I’m with you, and I agree that is technically correct, but I believe the sheer number of people who might accidentally write “gmail” instead of “gmail.com” compared to people using an IPv6 address (seems like a spam bot) or using a TLD like “admin@com” make requiring the dot worthwhile.

            • PoolloverNathan@programming.dev
              link
              fedilink
              English
              arrow-up
              1
              ·
              edit-2
              9 months ago

              That’s why I have an “allow anyway” button for addresses that look misspelled but are still technically valid.

              Edit: believe it or not, that was a typo.

    • laurelraven@lemmy.blahaj.zone
      link
      fedilink
      English
      arrow-up
      1
      ·
      9 months ago

      That’s what it looks like to me too

      I could probably write a RegEx for email format validation that’s accurate, but why would I when there are ones already written and readily available that covers all possible legit variations on the standard? I never understood why people insist on writing their own (crap) RegEx for something with as many possible variations they can miss like email…

      And that one isn’t even a weird edge case! It’s a domain with a sub domain, if they can’t even cover that case then it’s an extra shitty RegEx