This is a discussion on global options vs. those specified in master.cf within the mailing.postfix.users forums, part of the Mail Servers and Related category; I'm trying to set up an "outgoing" smtpd process in my master.cf that bypasses virus/spam ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I'm trying to set up an "outgoing" smtpd process in my master.cf that bypasses virus/spam scanning and has a little different config. I'm running into a problem trying to find out what parameters are global (like syslog_name which if found from the archives) and what can be specified as a -o to the smtpd line in my master.cf. I'm noticing thing like mynetworks isn't being changed and recipient_bcc_maps are still bcc'ing addresses from the original. I could always create a completely new instance with a new main.cf but at that point I'll just move it off to another host. Are there any documents that list what params are considered global and what can be listed on the smtpd line in master.cf? Here is my master.cf line. 192.168.xxx.33:25 inet n - n - - smtpd -o smtpd_proxy_filter= -o smtpd_client_restrictions= -o smtpd_helo_restrictions= -o smtpd_sender_restrictions= -o smtpd_recipient_restrictions=$outgoing_smtpd_recip ient_restrictions -o mynetworks=$outgoing_mynetworks -o receive_override_options=no_unknown_recipient_chec ks -o smtpd_restriction_classes=$outgoing_smtpd_restrict ion_classes -o syslog_name=$outgoing_syslog_name -o recipient_bcc_maps= and appropriate lines from main.cf outgoing_syslog_name=postfix-outgoing outgoing_mynetworks = 127.0.0.1/8,some_other_nets/24 outgoing_smtpd_recipient_restrictions = permit_mynetworks, check_client_access hash:/etc/postfix/internal_relay_ips, reject internal_relay_restrictions = check_recipient_access regexp:/etc/postfix/valid_internal_relay_domains, reject kill_it = reject outgoing_smtpd_restriction_classes = internal_relay_restrictions, kill_it |