• hansl@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    7 months ago

    There are also cases where you want to have a disallow list of known bad email providers. That’s also part of the parsing and validating.

    • Tramort@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      7 months ago

      It’s a valid need, but a domain blacklist isn’t part of email parsing and if you conflate the two inside your program then you’re mixing concerns.

      Why is the domain blacklist even in your program? It should be a user configurable file or a list of domains in the database.

      • Black616Angel@feddit.de
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        You are right in that it isn’t (or shouldn’t be) part of the parsing, but the program has to check the blacklist even if it’s in a database.