diff options
author | Jason Cox <me@jasoncarloscox.com> | 2023-10-12 10:38:39 -0400 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-10-22 15:12:45 +0200 |
commit | 863e124e8437ac2f5a92fe3f291b7e7e022787fc (patch) | |
tree | 54aca238e0c622b6a34e4095830c45c264c0fabf /doc | |
parent | 8fdabbc4bfcaf8f0214a66777336a356cc2a0616 (diff) | |
download | aerc-863e124e8437ac2f5a92fe3f291b7e7e022787fc.tar.gz |
accounts: allow fnmatch-style wildcards in aliases
Wildcard aliases make it possible to always reply from the same address
to which a message was addressed, which is useful for catch-all email
domains. Support fnmatch-style wildcards in only the address portion of
an alias.
When replying to a message that matches a wildcard alias, substitute the
matching email address for the wildcard address, but keep the name
specified with the wildcard address. For example, when the alias
"Someone Awesome" <*@someone.com> is present, the reply to an email
addressed to "Someone" <hi@someone.com> would be from
"Someone Awesome" <hi@someone.com>.
Signed-off-by: Jason Cox <me@jasoncarloscox.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/aerc-accounts.5.scd | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/aerc-accounts.5.scd b/doc/aerc-accounts.5.scd index 3b6ad030..9d95af32 100644 --- a/doc/aerc-accounts.5.scd +++ b/doc/aerc-accounts.5.scd @@ -126,6 +126,13 @@ Note that many of these configuration options are written for you, such as use *aerc-sendmail*(5) in combination with *msmtp*(1) and *--read-envelope-from*. + An alias can also use fnmatch-style wildcards in the address portion. These + wildcards can be useful for catch-all addresses. For example, the alias + _"Your Name" <\*@you.com>_ would ensure that when replying to emails addressed + to _hi@you.com_ and _contact@you.com_, the From: field is set to + _hi@you.com_ and _contact@you.com_, respectively. The name from the alias, + not from the matching address, is used. + *headers* = _<header1,header2,header3...>_ Specifies the comma separated list of headers to fetch with the message. |