On 10/28/2020 11:22 AM, Joey J wrote:
> I have the following config:
> smtpd_recipient_restrictions =
> permit_mynetworks
> reject_unauth_destination
> reject_non_fqdn_recipient
> check_recipient_access regexp:/etc/postfix/rcptaccess
> check_sender_access regexp:/etc/postfix/senderaccess
> check_client_access cidr:/etc/postfix/clientaccess hash:/etc/postfix/sender_reject cidr:/etc/postfix/sender_reject_ip
>
> sender_reject_ip has:
> 170.130.0.0/16 550 SPR-170.130.0.0
directives such as check_client_access take one single table name.
You need to prefix each table with how it is to be used, ie.
check_client_access cidr:/etc/postfix/sender_reject_ip
-- Noel Jones