6 lines
190 B
Plaintext
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 %}
|