From 4b8be1a112379d2aae6c3b4ef96233cf7f6703b2 Mon Sep 17 00:00:00 2001 From: Jason Rothstein Date: Sun, 10 Apr 2022 18:07:19 -0500 Subject: [PATCH] Template syntax error --- templates/Fedora/35/etc/dovecot/accounts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/Fedora/35/etc/dovecot/accounts b/templates/Fedora/35/etc/dovecot/accounts index f24438a..adc9dba 100644 --- a/templates/Fedora/35/etc/dovecot/accounts +++ b/templates/Fedora/35/etc/dovecot/accounts @@ -1,5 +1,5 @@ {% if defined dovecot_users and dovecot_users is iterable %} -{% foreach user in dovecot_users %} +{% for user in dovecot_users %} {{ user.email }}:{{ user.password | password_hash('sha512') }}:::::: {% endfor %} {% endif %}