ansible-role-postfix/templates/postfix/conf.d/header_add.j2
2023-03-20 20:01:04 +01:00

8 lines
191 B
Django/Jinja

### {{ ansible_managed }}
{% if postfix_header_add is defined %}
{% for header in postfix_header_add %}
{{ "%-50s %s" | format(header.destination, header.header) }}
{% endfor %}
{% endif %}