diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2018-12-06 19:22:29 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2018-12-06 19:22:29 +0100 |
commit | 5a407e715e6efc7da24b2902913a9da58d2bd19c (patch) | |
tree | 9a4e185f5bf1e75f83e2d97b236bd6f5e4844fa1 /roles/MSA/templates/etc/postfix/main.cf.j2 | |
parent | a88db53786768309e9f88840231e5812506535bf (diff) |
postfix: remove explicit default 'mail_owner = postfix'.
Diffstat (limited to 'roles/MSA/templates/etc/postfix/main.cf.j2')
-rw-r--r-- | roles/MSA/templates/etc/postfix/main.cf.j2 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/roles/MSA/templates/etc/postfix/main.cf.j2 b/roles/MSA/templates/etc/postfix/main.cf.j2 index 7d7cb6d..b54f84c 100644 --- a/roles/MSA/templates/etc/postfix/main.cf.j2 +++ b/roles/MSA/templates/etc/postfix/main.cf.j2 @@ -1,30 +1,29 @@ ######################################################################## # Mail Submission Agent (MSA) configuration # # {{ ansible_managed }} # Do NOT edit this file directly! smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU) biff = no readme_directory = no -mail_owner = postfix delay_warning_time = 4h maximal_queue_lifetime = 5d myorigin = /etc/mailname myhostname = smtp{{ msano | default('') }}.$mydomain mydomain = fripost.org append_dot_mydomain = no mynetworks = 127.0.0.0/8, [::1]/128 {%- for h in groups.webmail | difference([inventory_hostname]) | sort -%} , {{ ipsec[ hostvars[h].inventory_hostname_short ] | ipaddr }} {% endfor %} queue_directory = /var/spool/postfix-{{ postfix_instance[inst].name }} data_directory = /var/lib/postfix-{{ postfix_instance[inst].name }} multi_instance_group = {{ postfix_instance[inst].group | default('') }} multi_instance_name = postfix-{{ postfix_instance[inst].name }} multi_instance_enable = yes |