2024-03-16 21:01:06 -05:00

6 lines
190 B
Plaintext

{% if dovecot_users is defined and dovecot_users is iterable %}
{% for user in dovecot_users %}
{{ user.email }}:{{ user.password | password_hash('sha512') }}::::::
{% endfor %}
{% endif %}