Skip to content
Snippets Groups Projects
Commit c2093e46 authored by Lars Beckers's avatar Lars Beckers
Browse files

dovecot: add custom mail namespaces for shared folders

parent f57bcbe5
No related branches found
No related tags found
1 merge request!16Minimal Viable FSMPI Deployment
......@@ -40,4 +40,5 @@ dovecot_auth_default_realm: ''
dovecot_auth_krb5_keytab: ''
dovecot_auth_mechanisms:
- plain
dovecot_mail_namespaces: []
dovecot_special_mailbox_auto_subscribe: false
......@@ -79,6 +79,14 @@ namespace inbox {
# See 15-mailboxes.conf for definitions of special mailboxes.
}
{% for namespace in dovecot_mail_namespaces %}
namespace {
{% for key, value in namespace.items() %}
{{ key }} = {{ value }}
{% endfor %}
}
{% endfor %}
# Example shared namespace configuration
#namespace {
#type = shared
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment