6 lines
185 B
Plaintext
6 lines
185 B
Plaintext
{% if defined dovecot_users and dovecot_users is iterable %}
|
|
{% foreach user in dovecot_users %}
|
|
{{ user.email }}:{{ user.password | password_hash('sha512') }}::::::
|
|
{% endfor %}
|
|
{% %}
|