Giter VIP home page Giter VIP logo

Comments (5)

taxilian avatar taxilian commented on September 21, 2024 2

The spec for subaddressing is RFC 5233: https://tools.ietf.org/html/rfc5233 -- it leaves a lot up to the implementor, but the most common use case that I have seen you can just split to the first plus sign, I believe.

from email-addresses.

jackbearheart avatar jackbearheart commented on September 21, 2024

This could be a nice feature. It looks like people sometimes call this "sub-addressing" or "tags". I assume that all servers implementing this implement it by "split on the first + sign". If anyone can point me to a reasonable spec/rfc on how sub-addressing works, we could add it to the library, but I'm hesitant to add a function where all it does is "split on the first + sign" without having some kind of standard. How would a consumer of the library use this reliably unless they know the receiving mail server's implementation?

So, until then, it's just:

> const local = addrs.parseOneAddress('[email protected]').local;
> local.substring(0, local.indexOf('+'));
'foo'

from email-addresses.

al45tair avatar al45tair commented on September 21, 2024

The separator character sequence is unspecified by the RFC (intentionally). I think the '+' syntax originated with Postfix; qmail supported '-' instead. Postfix is configurable and actually allows the specification of any character (set) you like; it doesn't support multi-character separators. Gmail I suspect only supports '+'.

One other comment I have is that I'd strongly discourage websites from attempting to strip subaddresses. If the user has given you a subaddress, they mean for you to use it, and you can't know in advance exactly how the subaddress is formatted or even if '+' is the delimiter. Separating out subaddresses might be a useful feature of an email parsing library where it's being used by mail clients or other user-side utilities, however.

from email-addresses.

taxilian avatar taxilian commented on September 21, 2024

While I agree it's a bad idea to strip subaddresses there are still valid use cases -- I have a "global unsubscribe" option on my site and I prefer it to block the address totally, including any subaddresses.

from email-addresses.

cmawhorter avatar cmawhorter commented on September 21, 2024

fwiw in addition to the plus, gmail strips out a subset of characters. for example [email protected] is the same as [email protected] and both deliver. i'd bet they allow [email protected] too but the gmail client doesn't

from email-addresses.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.