forked from ccchb/ansible
6 lines
235 B
Text
6 lines
235 B
Text
|
{% 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 %}
|