diff options
author | Georg Pfuetzenreuter | 2023-01-24 23:03:20 +0100 |
---|---|---|
committer | Georg Pfuetzenreuter | 2023-01-24 23:03:20 +0100 |
commit | 7b9f184c6b0e6164cfc08b5ae4b77970cc001194 (patch) | |
tree | 0fa58b0f02166f66be58d368f9acafcc84207b4c /pillar/postfix.sls | |
parent | 342affc1b8d8a3c6152de27e809a63e6cc86b043 (diff) | |
download | salt-7b9f184c6b0e6164cfc08b5ae4b77970cc001194.tar.gz salt-7b9f184c6b0e6164cfc08b5ae4b77970cc001194.tar.bz2 salt-7b9f184c6b0e6164cfc08b5ae4b77970cc001194.zip |
Revert "Split to OS specific common pillar"
This reverts commit 4863396938c7c638517cbefc3a2773c9eb29bc69.
Diffstat (limited to 'pillar/postfix.sls')
-rw-r--r-- | pillar/postfix.sls | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pillar/postfix.sls b/pillar/postfix.sls new file mode 100644 index 0000000..15c3d07 --- /dev/null +++ b/pillar/postfix.sls @@ -0,0 +1,26 @@ +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' + + aliases: + use_file: false + present: + admins: 'georg, pratyush' + georg: georg@lysergic.dev + pratyush: pratyush@lysergic.dev + root: 'system, \root' + system: system@lysergic.dev |