Fix order of defined test to match syntax

This commit is contained in:
Jason Rothstein 2022-04-10 18:18:32 -05:00
parent 4b8be1a112
commit bfeff44109

View File

@ -1,4 +1,4 @@
{% if defined dovecot_users and dovecot_users is iterable %} {% if dovecot_users is defined and dovecot_users is iterable %}
{% for user in dovecot_users %} {% for user in dovecot_users %}
{{ user.email }}:{{ user.password | password_hash('sha512') }}:::::: {{ user.email }}:{{ user.password | password_hash('sha512') }}::::::
{% endfor %} {% endfor %}