initial upload

This commit is contained in:
2025-10-10 11:07:34 +00:00
commit 6224cd01c6
161 changed files with 8964 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# {{ ansible_managed }}
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
{% for key, value in postfix_settings | dictsort %}
{% if value is sequence and value is not string %}
{{ key }} = {{ value | flatten | join(",\n\t") }}
{% elif value is sameas true or value is sameas false %}
{{ key }} = {{ 'yes' if value else 'no' }}
{% else %}
{{ key }} = {{ value }}
{% endif %}
{% endfor %}