Tomasz Chmielewski:
> I'm trying to configure Postfix to accept mail for addresses
> matching the /^prefix...@.+$/ regex only.
/etc/postfix/main.cf:
smtpd_recipient_restrictions =
...
check_recipient_access pcre:/etc/postfix/access.pcre
/etc/postfix/access.pcre:
/^prefix-/
I'm trying to configure Postfix to accept mail for addresses matching the
/^prefix...@.+$/ regex only.
I can do this with:
virtual_alias_maps = regexp:/etc/postfix/virtual
virtual_maps = regexp:/etc/postfix/virtual
mydestination = $myhostname, localhost.$mydomain, localhost,
regexp:/etc/postfi