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
16 lines
489 B
Plaintext
16 lines
489 B
Plaintext
# Deny access for users. Included from 10-auth.conf.
|
|
|
|
# Users can be (temporarily) disabled by adding a passdb with deny=yes.
|
|
# If the user is found from that database, authentication will fail.
|
|
# The deny passdb should always be specified before others, so it gets
|
|
# checked first.
|
|
|
|
# Example deny passdb using passwd-file. You can use any passdb though.
|
|
passdb {
|
|
driver = passwd-file
|
|
deny = yes
|
|
|
|
# File contains a list of usernames, one per line
|
|
args = /etc/dovecot/deny-users
|
|
}
|