Work around Jinja2 bug? where %} and {{ need a space between
This commit is contained in:
parent
29bf5948f1
commit
e1a6e3fd4a
@ -738,6 +738,9 @@ meta_directory = /etc/postfix
|
||||
shlib_directory = /usr/lib64/postfix
|
||||
|
||||
{% if ensure_postfix.milter_list is defined and ensure_postfix.milter_list is iterable %}
|
||||
# The MILTER Configuration
|
||||
smtpd_milters = {% for milter in ensure_postfix.milter_list %}{{ milter.protocol }}:{{ milter.hostname }}:{{ milter:port }} {% endfor %}
|
||||
# The Milter List
|
||||
{% for milter in ensure_postfix.milter_list %}
|
||||
# -- {{ milter.description }} -- {{ milter.protocol }}:{{ milter.hostname }}:{{ milter.port }}
|
||||
{% endfor %}
|
||||
smtpd_milters = {% for milter in ensure_postfix.milter_list %} {{ milter.protocol }}:{{ milter.hostname }}:{{ milter.port }} {% endfor %}
|
||||
{% endif %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user