Update to 2023-11-22 16:00

This commit is contained in:
Daniel Berteaud
2023-11-22 16:00:28 +01:00
parent 91c6eec01c
commit e76462f776
6 changed files with 41 additions and 8 deletions

View File

@@ -50,4 +50,7 @@ owner_request_special = no
transport_maps = hash:{{ mailman_root_dir | default('/opt/mailman') }}/data/data/postfix_lmtp
local_recipient_maps = hash:{{ mailman_root_dir | default('/opt/mailman') }}/data/data/postfix_lmtp
relay_domains = hash:{{ mailman_root_dir | default('/opt/mailman') }}/data/data/postfix_domains
{% else %}
relay_domains = hash:/etc/postfix/relay_domains
transport_maps = hash:/etc/postfix/transport_maps
{% endif %}

View File

@@ -0,0 +1,3 @@
{% for domain in postfix_relay_domains %}
{{ domain.domain }} 1
{% endfor %}

View File

@@ -0,0 +1,5 @@
{% for domain in postfix_relay_domains %}
{% if domain.transport is defined %}
{{ domain.domain }} {{ domain.transport }}
{% endif %}
{% endfor %}