plus email address format

Seems easy enough to do; while I found these nstructins in a Debian (debian.org) wiki, it would work in our exim.conf file as well:
Email Sub-addressing (plus signs like Gmail)

These can easily be achieved by adding something similar to the following in one of more of your router definitions

local_part_suffix = +* : -* : _*
local_part_suffix_optional

The above example would deliver [email protected], [email protected] and [email protected] to [email protected].

Similarly, you could use a prefix instead with these similarly named options

Code:
local_part_prefix = *+ : *- : *_
local_part_prefix_optional
The above example would deliver [email protected], [email protected] and [email protected] to [email protected].

In either case, you could then use sieve filtering, config tricks or your email client to apply delivery rules.
Jeff
 
Back
Top