Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the + in email addresses defined?

I know that email addresses, in the local part (before the @ sign), can include a +. And everything after the + can be used by the email system for filtering and other uses. But the email itself is delivered per the part before the + sign.

Example:

[email protected]         Delivered to larry mailbox on foo.com
[email protected]           Delivered to jim mailbox on foo.com
[email protected]       Also delivered to larry mailbox on foo.com. The +1 can be
                      used for filtering or something else by the recipient
[email protected] Also delivered to larry mailbox on foo.com

The above works on GMail, Yahoo and other systems.

Question: Where exactly is it defined in the RFCs? I looked but couldn't find it.

like image 834
Larry K Avatar asked Oct 12 '25 11:10

Larry K


1 Answers

The + isn't defined in the RFC for mail addressing, RFC 822. It is an implementation by some MTAs in an effort to filter incoming messages to a single mailbox, but the current RFC doesn't' support exposing mailbox structure/filters to senders.

It does leave the handling of the local portion of the address up to the MTA which is where these extensions have been promoted.

There is a proposed RFC, RFC 5233, for sub addressing that explains plus addressing in detail.

So there is ongoing work to standardize it, but that hasn't yet happened. I know not all MTAs use + addressing for this purpose.

like image 60
Frazell Thomas Avatar answered Oct 16 '25 13:10

Frazell Thomas