From 863e124e8437ac2f5a92fe3f291b7e7e022787fc Mon Sep 17 00:00:00 2001 From: Jason Cox Date: Thu, 12 Oct 2023 10:38:39 -0400 Subject: 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" would be from "Someone Awesome" . Signed-off-by: Jason Cox Acked-by: Robin Jarry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index 707409ca..54229546 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - New `flagged` criteria for `:sort` - New `:send-keys` command to control embedded terminals. +- Account aliases now support fnmatch-style wildcards ### Fixed -- cgit