diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2021-04-14 19:32:14 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2021-04-14 19:32:14 -0300 |
commit | 516ed2041f3ff0d893ed116b11179e4c7ae2ad09 (patch) | |
tree | 05a9b373045887cf3ffa65fd079e8e53e82268e6 /templates/dovecot | |
parent | 5eb3dca39ea4c01eb38a8c6f329e6d5e9c845732 (diff) | |
download | puppet-mail-516ed2041f3ff0d893ed116b11179e4c7ae2ad09.tar.gz puppet-mail-516ed2041f3ff0d893ed116b11179e4c7ae2ad09.tar.bz2 |
Fix debian bug 903161
Diffstat (limited to 'templates/dovecot')
-rw-r--r-- | templates/dovecot/dovecot.conf.buster.erb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/dovecot/dovecot.conf.buster.erb b/templates/dovecot/dovecot.conf.buster.erb index 94c4f09..a515e35 100644 --- a/templates/dovecot/dovecot.conf.buster.erb +++ b/templates/dovecot/dovecot.conf.buster.erb @@ -73,3 +73,26 @@ protocol lda { # Should saving a mail to a non-existing mailbox automatically create it? lda_mailbox_autocreate = yes + +# See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=903161 +service stats { + unix_listener stats-reader { + mode = 0 + } + unix_listener stats-writer { + mode = 0 + } +} + +# See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=903161 +service old-stats { + fifo_listener old-stats-mail { + mode = 0 + } + fifo_listener old-stats-user { + mode = 0 + } + unix_listener old-stats { + mode = 0 + } +} |