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

dovecot: add lda autocreate/autosubscribe options

parent c2093e46
No related branches found
No related tags found
Loading
......@@ -35,6 +35,8 @@ dovecot_sieve: 'file:~/sieve;active=~/.dovecot.sieve'
# These variables were introduced for compatibility to a certain setup.
# They may disappear without prior notice and/or may not work as expected.
dovecot_lda_mailbox_autocreate: false
dovecot_lda_mailbox_autosubscribe: false
dovecot_auth_realms: []
dovecot_auth_default_realm: ''
dovecot_auth_krb5_keytab: ''
......
......@@ -37,10 +37,10 @@
#lda_original_recipient_header =
# Should saving a mail to a nonexistent mailbox automatically create it?
#lda_mailbox_autocreate = no
lda_mailbox_autocreate = {{ 'yes' if dovecot_lda_mailbox_autocreate else 'no' }}
# Should automatically created mailboxes be also automatically subscribed?
#lda_mailbox_autosubscribe = no
lda_mailbox_autosubscribe = {{ 'yes' if dovecot_lda_mailbox_autosubscribe else 'no' }}
protocol lda {
# Space separated list of plugins to load (default is global mail_plugins).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment