on Sun Jan 17 2016, Dave Abrahams <dave-AT-boostpro.com> wrote: > on Sun Jan 17 2016, "A. Schulze" <sca-AT-andreasschulze.de> wrote: > >> Dave Abrahams: >> >>> The only thing is, I keep getting these in var/log/mail.log: >>> >>> anvil: Fatal: chroot(/Users/dave/brew/var/run/dovecot/empty) >>> failed: Operation not permitted >>> master: Error: service(anvil): command startup failed, throttling >>> for 60 secs >>> auth: Error: read(anvil-auth-penalty) failed: EOF >> >> from "doveconf -a | less" >> >> service anvil { >> process_min_avail = 1 >> } >> >> try " = 0" ... > > Adding this to dovecot.conf doesn't seem to change anything: > > service anvil { > process_min_avail = 0 > } > > Is there something else I need to do?
Taking a wild guess, this seems to work: service anvil { executable = /usr/bin/True process_min_avail = 0 unix_listener anvil-auth-penalty { } unix_listener anvil { } } I have no idea which parts of it are necessary and which are incidental, though. Hopefully, none of it is actively harmful.