mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
a7670ac5c1
* Add #394: Postfix Virtual Transport This makes it possible to specify a lmtp config file, by providing POSTFIX_DAGENT. Update - Readme with informations about #394 * Add Variable ENABLE_POSTFIX_VIRTUAL_TRANSPORT (task) * Add Variable POSTFIX_DAGENT (section) Added Unit tests for virtual transport * Fix syntax error in test/tests.bats * Fix Unit Test
20 lines
676 B
Plaintext
20 lines
676 B
Plaintext
##
|
|
## Mailbox access control lists.
|
|
##
|
|
|
|
# vfile backend reads ACLs from "dovecot-acl" file from mail directory.
|
|
# You can also optionally give a global ACL directory path where ACLs are
|
|
# applied to all users' mailboxes. The global ACL directory contains
|
|
# one file for each mailbox, eg. INBOX or sub.mailbox. cache_secs parameter
|
|
# specifies how many seconds to wait between stat()ing dovecot-acl file
|
|
# to see if it changed.
|
|
plugin {
|
|
#acl = vfile:/etc/dovecot/global-acls:cache_secs=300
|
|
}
|
|
|
|
# To let users LIST mailboxes shared by other users, Dovecot needs a
|
|
# shared mailbox dictionary. For example:
|
|
plugin {
|
|
#acl_shared_dict = file:/var/lib/dovecot/shared-mailboxes
|
|
}
|