Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. ## Dovecot configuration file
  2.  
  3. # Protocols we want to be serving: imap imaps pop3 pop3s managesieve
  4. protocols = imap imaps pop3 pop3s
  5.  
  6. # A space separated list of IP or host addresses where to listen in for
  7. listen = *, [::]
  8.  
  9. # Disable LOGIN command and all other plaintext authentications unless
  10. disable_plaintext_auth = no
  11.  
  12. # Should all IMAP and POP3 processes be killed when Dovecot master process
  13. # shuts down.
  14. shutdown_clients = yes
  15.  
  16. ##
  17. ## Logging
  18. ##
  19. log_timestamp = "%Y-%m-%d %H:%M:%S "
  20.  
  21. ##
  22. ## Mailbox locations and namespaces
  23. ##
  24.  
  25. mail_location = maildir:/home/%u/Maildirmail_privileged_group = mail
  26.  
  27. ##
  28. ## IMAP specific settings
  29. ##
  30.  
  31. protocol imap {
  32. }
  33.  
  34. ##
  35. ## Authentication processes
  36.  
  37. auth default {
  38. mechanisms = plain login
  39. passdb pam {
  40. }
  41. # userdb passwd {
  42. # }
  43. socket listen {
  44. client {
  45. path = /var/spool/postfix/private/auth
  46. mode = 0660
  47. user = postfix
  48. group = postfix
  49. }
  50.  
  51. }
  52.  
  53. }
  54.  
  55.  
  56. # PAM authentication.
  57. passdb pam {
  58. args = dovecot
  59. }
  60. # userdb passwd {
  61. #args =
  62. #}
  63.  
  64. # User to use for the process. This user needs access to only user and
  65. # password databases, nothing else.
  66. user = root
  67.  
  68.  
  69.  
  70.  
  71. ##
  72. ## Dictionary server settings
  73. ##
  74.  
  75.  
  76. dict {
  77. #quota = mysql:/etc/dovecot/dovecot-dict-quota.conf
  78. #expire = db:/var/lib/dovecot/expire.db
  79. }
  80.  
  81.  
  82. ##
  83. ## Plugin settings
  84. ##
  85.  
  86. plugin {
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement