update readme for inet_interfaces and set nil as default

This commit is contained in:
jtimberman 2012-11-29 13:44:28 -07:00
parent 8f4c8a9011
commit 87cbbe4160
2 changed files with 5 additions and 0 deletions

View File

@ -38,6 +38,10 @@ See `attributes/default.rb` for default values.
* `node['postfix']['multi_environment_relay']` - set to true if nodes * `node['postfix']['multi_environment_relay']` - set to true if nodes
should not constrain search for the relayhost in their own should not constrain search for the relayhost in their own
environment. environment.
* `node['postfix']['inet_interfaces']` - if set, corresponds to the
inet_interfaces option in `/etc/postfix/main.cf`. nil by default,
which will result in 'all' for master `mail_type` and
'loopback-only' for non-master (anything else) `mail_type`.
* `node['postfix']['mail_relay_networks']` - corresponds to the * `node['postfix']['mail_relay_networks']` - corresponds to the
mynetworks option in `/etc/postfix/main.cf`. mynetworks option in `/etc/postfix/main.cf`.
* `node['postfix']['smtpd_use_tls']` - set to "yes" to use TLS for * `node['postfix']['smtpd_use_tls']` - set to "yes" to use TLS for

View File

@ -23,6 +23,7 @@ default['postfix']['relayhost'] = ""
default['postfix']['mail_relay_networks'] = "127.0.0.0/8" default['postfix']['mail_relay_networks'] = "127.0.0.0/8"
default['postfix']['relayhost_role'] = "relayhost" default['postfix']['relayhost_role'] = "relayhost"
default['postfix']['multi_environment_relay'] = false default['postfix']['multi_environment_relay'] = false
default['postfix']['inet_interfaces'] = nil
default['postfix']['smtpd_use_tls'] = "yes" default['postfix']['smtpd_use_tls'] = "yes"
default['postfix']['smtp_sasl_auth_enable'] = "no" default['postfix']['smtp_sasl_auth_enable'] = "no"