summaryrefslogtreecommitdiffstats
path: root/pillar/common/postfix.sls
blob: ce59e608630c23544b23d1f35ed73f4b2daeb94b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
postfix:
  master_config:
    services:
      smtp:
        enable: False
  config:
    # to-do: set via site config
    relayhost: zz0.email
    myhostname: {{ grains['fqdn'] }}
    inet_interfaces: loopback-only
    # to-do: support relay via IPv6
    inet_protocols: ipv4
    alias_maps: lmdb:/etc/aliases
    smtpd_use_tls: 'no'
    smtp_use_tls: 'yes'
    smtp_tls_security_level: encrypt
    smtp_tls_wrappermode: 'yes'