One more question, as i reconfigure my mail-servers :)
I have "recipient_delimiter" set to ".", so that
user.<anything>@example.com will be delivered to [email protected]
Now, i have a certain sub-name, that i want to REJECT.
For example:
[email protected]
Is it possible to reject mail to [email protected] while accepting
all other [email protected] addresses?
So far, i found "recipient_access" to allow this this:
main.cf:
check_recipient_access pcre:/etc/postfix/recipient_access
/etc/postfix/recipient_access:
/^user\.s...@example\.com$/ REJECT
Is this the right way to handle this?
Or are there other, more recommended methods?