Greetings, I would like to remove HELO and DNSBL checking for one domain on a postfix server that receives mail for multiple domains. From what I have read, it sounds like it should be as simple as moving the "smtpd_helo_required=no" and "smtpd_recipient_restrictions=permit_sasl_authenticated,permit_mynetworks" to the corresponding entry for that domain in master.cf, such that the result is:
x.x.x.200:smtp inet n - n - 1 smtpd -o myhostname=mail.DOMAIN1.net x.x.x.201:smtp inet n - n - 1 smtpd -o myhostname=mail.DOMAIN2.com -o content_filter= -o receive_override_options=no_address_mappings -o smtpd_helo_required=no -o smtpd_recipient_restrictions=permit_sasl_authenticated,permit_mynetworks x.x.x.202:smtp inet n - n - 1 smtpd -o myhostname=mail.DOMAIN3.net However, the HELO checking is still happening and the DNSBLs are still being checked. What did I miss? Thank you in advance, Isaac Grover