diff options
-rw-r--r-- | dovecot/conf.d/50-stats-local.conf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dovecot/conf.d/50-stats-local.conf b/dovecot/conf.d/50-stats-local.conf new file mode 100644 index 0000000..e281c04 --- /dev/null +++ b/dovecot/conf.d/50-stats-local.conf @@ -0,0 +1,28 @@ +root@lnxp5:/etc/dovecot/conf.d# less 50-stats-local.conf +# Disable stats, to ease running non-administrative commands +# +# Origin: <https://bugs.debian.org/903161#41> +# and <https://bugs.debian.org/903161#51> + +stats_writer_socket_path= + +service stats { + unix_listener stats-reader { + mode = 0 + } + unix_listener stats-writer { + mode = 0 + } +} + +service old-stats { + fifo_listener old-stats-mail { + mode = 0 + } + fifo_listener old-stats-user { + mode = 0 + } + unix_listener old-stats { + mode = 0 + } +} |