You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
49 lines
1.6 KiB
# {{ ansible_managed }}
|
|
|
|
queue_directory = /var/spool/postfix
|
|
command_directory = /usr/sbin
|
|
daemon_directory = {{ (ansible_os_family == 'Debian') | ternary('/usr/lib/postfix/sbin','/usr/libexec/postfix') }}
|
|
data_directory = /var/lib/postfix
|
|
sendmail_path = /usr/sbin/sendmail.postfix
|
|
newaliases_path = /usr/bin/newaliases.postfix
|
|
mailq_path = /usr/bin/mailq.postfix
|
|
html_directory = no
|
|
manpage_directory = /usr/share/man
|
|
|
|
setgid_group = postdrop
|
|
mail_owner = postfix
|
|
|
|
myhostname = {{ inventory_hostname }}
|
|
{% if postfix_mydomain is defined %}
|
|
mydomain = {{ postfix_mydomain }}
|
|
{% endif %}
|
|
|
|
myorigin = $mydomain
|
|
|
|
inet_interfaces = {{ postfix_networking | default(False) | ternary('all','localhost') }}
|
|
inet_protocols = ipv4
|
|
|
|
mydestination = {{ postfix_mydestination | default(['$myhostname', 'localhost.$mydomain', 'localhost']) | join(', ') }}
|
|
|
|
mynetworks = {{ postfix_mynetworks | default([ '127.0.0.0/8' ]) | join (', ') }}
|
|
|
|
{% if postfix_relay_host is defined %}
|
|
relayhost = {{ postfix_relay_host }}
|
|
{% if postfix_relay_user is defined and postfix_relay_pass is defined %}
|
|
smtp_sasl_auth_enable = yes
|
|
smtp_sasl_password_maps = hash:/etc/postfix/relay_auth
|
|
{% endif %}
|
|
{% if postfix_relay_use_tls | default(True) %}
|
|
smtp_use_tls = yes
|
|
smtp_sasl_security_options = noanonymous
|
|
smtp_sasl_tls_security_options = noanonymous
|
|
smtp_tls_note_starttls_offer = yes
|
|
smtp_tls_CApath = {{ postfix_relay_ca_path | default( (ansible_os_family == 'Debian') | ternary('/etc/ssl/cert/ca-certificate.pem','/etc/pki/tls/certs')) }}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
alias_maps = hash:/etc/aliases
|
|
alias_database = hash:/etc/aliases
|
|
|
|
debug_peer_level = 2
|
|
|
|
|