Skip to content

Instantly share code, notes, and snippets.

@mmalmeida
Created May 20, 2012 19:33
Show Gist options
  • Save mmalmeida/2759256 to your computer and use it in GitHub Desktop.
Save mmalmeida/2759256 to your computer and use it in GitHub Desktop.
socket listen {
master {
# Master socket provides access to userdb information. It's typically
# used to give Dovecot's local delivery agent access to userdb so it
# can find mailbox locations.
path = /var/run/dovecot/auth-master
mode = 0600
# Default user/group is the one who started dovecot-auth (root)
user = mail
group = mail
}
client {
# The client socket is generally safe to export to everyone. Typical use
# is to export it to your SMTP server so it can do SMTP AUTH lookups
# using it.
#path = /var/run/dovecot/auth-client
mode = 0660
path = /var/spool/postfix/private/auth
user = postfix
group = postfix
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment