fix: jinja syntax error

This commit is contained in:
s3lph 2023-07-16 23:36:06 +02:00
parent 7d950a4b51
commit 9d7e87530d

View file

@ -28,6 +28,6 @@ default_zone:
zones:
{% for zone, options in postfix_mtastsresolver_zones.items() -%}
{{ zone }}:
strict_testing: {{ options.strict_testing | default postfix_mtastsresolver_defaultzone_stricttesting | ternary('true', 'false') }}
timeout: {{ options.timeout | default postfix_mtastsresolver_defaultzone_timeout }}
strict_testing: {{ options.strict_testing | default(postfix_mtastsresolver_defaultzone_stricttesting) | ternary('true', 'false') }}
timeout: {{ options.timeout | default(postfix_mtastsresolver_defaultzone_timeout) }}
{% endfor -%}