mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
14 lines
284 B
Plaintext
14 lines
284 B
Plaintext
# Disable Dovecot's stats feature
|
|
#
|
|
# According to https://doc.dovecot.org/configuration_manual/service_configuration/
|
|
# setting mode to 0 disables the socket entirely.
|
|
|
|
service stats {
|
|
unix_listener stats-reader {
|
|
mode = 0
|
|
}
|
|
unix_listener stats-writer {
|
|
mode = 0
|
|
}
|
|
}
|