jimbob palmer:
> Hello,
>
> Say I wanted to whitelist a specific email recipient always and
> forever, but apply normal spam checks to everything else, could I do
> that?
>
> i.e. can I do the expensive checks in smtpd_recipient_restrictions first?
/etc/postfix/main.cf:
smtpd_recipient_restrictions =
permit_mynetworks
permit_sasl_authenticated
reject_unauth_destination
check_recipient_access hash:/etc/postfix/rcpt_access
...least expensive checks here...
...most expensive checks here...
/etc/postfix/rcpt_access:
[email protected] permit
Wietse