Advertisement
Guest User

Untitled

a guest
Jun 7th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. DOVECOT.CONF
  2. ######################################################################
  3. protocols = imap imaps pop3 pop3s
  4. disable_plaintext_auth = no
  5. log_timestamp = "%Y-%m-%d %H:%M:%S "
  6. mail_privileged_group = mail
  7. mail_debug = yes
  8. first_valid_uid = 8
  9. last_valid_uid = 8
  10. first_valid_gid = 8
  11. last_valid_gid = 8
  12. protocol imap {
  13. }
  14. protocol pop3 {
  15. pop3_uidl_format = %08Xu%08Xv
  16. }
  17. protocol managesieve {
  18. sieve=~/.dovecot.sieve
  19. sieve_storage=~/sieve
  20. }
  21. auth default {
  22. mechanisms = plain login
  23. passdb ldap {
  24. args = /etc/dovecot/dovecot-ldap.conf
  25. }
  26. userdb static {
  27. args = uid=8 gid=8
  28. }
  29. user = nobody
  30. }
  31. dict {
  32. }
  33. plugin {
  34. }
  35. ######################################################################
  36. DOVECOT-LDAP.CONF
  37. ######################################################################
  38. uris = ldap://172.16.16.22
  39. dn = uid=dovecot,dc=middle,dc=earth
  40. dnpass = dovecotpopper
  41. ldap_version = 3
  42. base = ou=domains,dc=middle,dc=earth
  43. scope = subtree
  44. pass_attrs = mailRoutingAddress=user,userPassword=password=,=y=proxy,mailHost=host,=destuser=%u*proxy,=pass=secret
  45. pass_filter = (&(objectClass=inetLocalMailRecipient)(objectClass=posixAccount)(uid=%n))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement