esackbauer It would be too complicated to explain my entire network stack here, but limiting SMTP recipients is guaranteed to prevent lateral movement in my case. To get back on track:
extra.cf:
smtpd_relay_restrictions =
check_recipient_access regexp:/opt/postfix/conf/local_domains,
permit_sasl_authenticated,
defer_unauth_destination
local_domains:
/dmz\.arpa$/ OK
/my\.domain$/ OK
main.cf snippet:
mynetworks = 127.0.0.0/8 10.0.0.0/8
Is there a way I can limit to who specifically the relaying/sending would be allowed, instead of anyone on my.domain, would it be possible to allow just sending to admin@my.domain?
having local_domains set as:
/dmz\.arpa$/ OK
/admin@my\.domain$/ OK
Doesn’t do the job, and still allows unauthenticated sending from the A class subnet, to the entirety of my.domain.