how to bypass header and body check in postfix

Zauny

Valued Member
How can I bypass the header and body check in Postfix for local emails (outgoing emails)? Or how can I create an exception rule...?
 

EQ Admin

EQ Forum Admin
Staff member
In your master.cf add this option to the smtpd config:

-o receive_override_options=no_header_body_checks

The end result will look something like:

127.0.0.1:smtp inet n - n - - smtpd
-o receive_override_options=no_header_body_checks​
 
Top