I've come across with this file on my server that came from a contribution from a Japanese developer regarding tarpiting patch for postgrey. It is named
whitelist_recipient with example lines included as
Code:
# *** whitelist recipient ***
postmaster@mydomain.example OK
abuse@mydomain.example OK
Though I'm not using this and just decided posting this in thinking that this might help you or provide you with some idea.
This should be included in smtpd_recipient_restrictions in main.cf as ordered
Code:
smtpd_recipient_restrictions =
permit_mynetworks
permit_sasl_authenticated
reject_unauth_destination
check_recipient_access hash:/etc/postfix/whitelist_recipient # HERE
check_recipient_access mysql:/etc/postfix/mysql-recipient.cf # just an example
reject_invalid_hostname
reject_non_fqdn_sender
reject_non_fqdn_hostname
reject_unknown_sender_domain
... others...
.... etc.
permit
# postmap /etc/postfix/whitelist_recipient
# postfix reload
-Gani