Guest User

Untitled

a guest
Oct 11th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. socket listen {
  2. master {
  3. # Master socket provides access to userdb information. It's typically
  4. # used to give Dovecot's local delivery agent access to userdb so it
  5. # can find mailbox locations.
  6. path = /var/run/dovecot/auth-master
  7. mode = 0600
  8. # Default user/group is the one who started dovecot-auth (root)
  9. user = mail
  10. group = mail
  11. }
  12. client {
  13. # The client socket is generally safe to export to everyone. Typical use
  14. # is to export it to your SMTP server so it can do SMTP AUTH lookups
  15. # using it.
  16. #path = /var/run/dovecot/auth-client
  17. mode = 0660
  18. path = /var/spool/postfix/private/auth
  19. user = postfix
  20. group = postfix
  21. }
  22. }
Add Comment
Please, Sign In to add comment