comparison mod_auth_dovecot/README.markdown @ 3306:b06fc0d03003

mod_auth_dovecot: Update example dovecot config Not tested, but this is how it looks like for postfix in my configuration.
author Kim Alvefur <zash@zash.se>
date Sun, 09 Sep 2018 13:11:29 +0200
parents 2c62fda477a5
children 1a58345d91a9
comparison
equal deleted inserted replaced
3305:122767430a97 3306:b06fc0d03003
31 You can create a new dedicated socket for Prosody too. Add the below to 31 You can create a new dedicated socket for Prosody too. Add the below to
32 the *socket listen* section of /etc/dovecot/dovecot.conf, and match the 32 the *socket listen* section of /etc/dovecot/dovecot.conf, and match the
33 socket path in Prosody's dovecot\_auth\_socket setting. 33 socket path in Prosody's dovecot\_auth\_socket setting.
34 34
35 service auth { 35 service auth {
36 socket listen { 36 unix_listener /var/spool/prosody/private/auth-client {
37 client { 37 mode = 0660
38 path = /var/spool/prosody/private/auth-client 38 user = prosody
39 mode = 0660 39 group = prosody
40 user = prosody
41 group = prosody
42 }
43 } 40 }
44 } 41 }
45 42
46 Make sure the socket directories exist and are owned by the Prosody 43 Make sure the socket directories exist and are owned by the Prosody
47 user. 44 user.