mirror of https://dev.ccchb.de/ccchb/ansible.git
6 lines
235 B
Plaintext
6 lines
235 B
Plaintext
|
{% for domain, users in dovecot_users.items() %}
|
|||
|
{% for name, password in users.items() %}
|
|||
|
{{ [[name, domain] | join("@"), password, 20002, 20002, ["/var/vmail", domain, name] | join("/"), ""] | join(":") }}
|
|||
|
{% endfor %}
|
|||
|
{% endfor %}
|