X-Git-Url: https://git.ralfj.de/ansible.git/blobdiff_plain/e7f0dda5b871d22ea9925aeaf8a1513d9833128b..55ed8162a42d0b5dba661bc95b809d398c61a9c1:/roles/email/templates/main.cf diff --git a/roles/email/templates/main.cf b/roles/email/templates/main.cf index cbd7b3d..e8538ce 100644 --- a/roles/email/templates/main.cf +++ b/roles/email/templates/main.cf @@ -1,15 +1,19 @@ compatibility_level = 2 -# local delivery: aliases only -alias_maps = hash:/etc/aliases -local_recipient_maps = $alias_maps +{% if postfix.hostname is defined %} +myhostname = {{ postfix.hostname }} +{% endif %} {% if postfix.mynetworks is defined %} mynetworks = {{ postfix.mynetworks }} {% endif %} +# local delivery: aliases only +alias_maps = hash:/etc/aliases +local_recipient_maps = $alias_maps + {% if 'letsencrypt' in group_names %} # TLS server parameters -smtpd_tls_cert_file=/etc/ssl/mycerts/letsencrypt/live.crt+chain +smtpd_tls_cert_file=/etc/ssl/mycerts/letsencrypt/live.crt smtpd_tls_key_file=/etc/ssl/private/letsencrypt/live.key smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache smtpd_tls_security_level = may @@ -32,17 +36,20 @@ smtp_tls_security_level = dane {% if postfix.postscreen | default(False) %} # postscreen config -postscreen_dnsbl_threshold = 3 +postscreen_dnsbl_threshold = 2 postscreen_dnsbl_whitelist_threshold = -2 postscreen_dnsbl_sites = - ix.dnsbl.manitu.net*2 sbl-xbl.spamhaus.org*2 - bl.spamcop.net dnsbl.sorbs.net bl.mailspike.net + ix.dnsbl.manitu.net*2 sbl-xbl.spamhaus.org*2 truncate.gbudb.net*2 + bl.spamcop.net bl.mailspike.net swl.spamhaus.org*-2 list.dnswl.org=127.0.[0..255].[0..254]*-2 postscreen_greet_action = enforce postscreen_dnsbl_action = enforce postscreen_pipelining_enable = yes postscreen_non_smtp_command_enable = yes postscreen_bare_newline_enable = yes +postscreen_access_list = permit_mynetworks, + cidr:$config_directory/postscreen_access.cidr +postscreen_blacklist_action = enforce {% endif %} # control relay access @@ -83,7 +90,7 @@ relay_clientcerts = hash:$config_directory/relay_clientcerts {% endif %} # setup virtual delivery domains, aliases and destinations -virtual_mailbox_domains = +virtual_mailbox_domains = {{ postfix.alias_domains | default("") }} {% if postfix.mailman is defined %} {% for item in postfix.mailman.domains %} {{item}}{% endfor %}{% endif %} {% if postfix.dovecot is defined %} {% for item in postfix.dovecot.domains %} {{item}}{% endfor %}{% endif %} @@ -133,6 +140,6 @@ non_smtpd_milters = $smtpd_milters # misc smtpd_delay_reject = yes disable_vrfy_command = yes -recipient_delimiter = + +recipient_delimiter = {{ postfix.recipient_delimiter | default("+") }} delay_warning_time = 4h -message_size_limit = 21384000 +message_size_limit = 30100100