Qmail and Postfix support address extensions like [email protected] where emails will be delivered to username, if the delimiter is configured to -.
Users can handle mails with .forward files in their home directory by default. (Or .qmail for Qmail.)
Emails to [email protected] are handled by the .forward-ext1 file if it exists, otherwise .forward is used as fallback.
For [email protected] Qmail tries .qmail-ext1-ext2, then .qmail-ext1 and finally .qmail.
Postfix tries .forward-ext1-ext2 and then directly .forward without caring about .forward-ext1.
How can I get Postfix to handle multiple address extensions? I want to catch all mails to username-ext1-*@example.com without parsing headers myself in .forward. – Did I miss something?
(This would also be useful for users who want to have multiple VERP-style mailing lists with simple separate configurations.)