Guest User

Untitled

a guest
May 16th, 2015
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. auth_debug = yes
  2. auth_debug_passwords = yes
  3. auth_mechanisms = plain login cram-md5
  4. auth_verbose = yes
  5. base_dir = /var/run/dovecot/
  6. disable_plaintext_auth = no
  7. ssl = no
  8. first_valid_uid = 1150
  9. last_valid_uid = 1150
  10. log_timestamp = %Y-%m-%d %H:%M:%S
  11. mail_debug = yes
  12. mail_location = maildir:/var/vmail/%d/%u
  13.  
  14.  
  15. ssl = yes
  16. ssl_cert = </etc/postfix/certs/cert.pem
  17. ssl_key = </etc/postfix/certs/key.pem
  18.  
  19.  
  20. passdb {
  21. args = /etc/dovecot/dovecot-sql.conf
  22. driver = sql
  23. }
  24. protocols = imap pop3 sieve
  25. service auth {
  26. unix_listener /var/spool/postfix/private/dovecot-auth {
  27. user = postfix
  28. group = postfix
  29. mode = 0660
  30. }
  31. unix_listener auth-master {
  32. user = vmail
  33. group = mail
  34. mode = 0660
  35. }
  36. unix_listener auth-userdb {
  37. user = vmail
  38. group = mail
  39. mode = 0660
  40. }
  41.  
  42. user=root
  43. }
  44. service imap-login {
  45. executable = /usr/libexec/dovecot/imap-login
  46. inet_listener imap {
  47. address = *
  48. port = 143
  49. }
  50. inet_listener imaps {
  51. port = 993
  52. ssl = yes
  53. }
  54. }
  55. service imap {
  56. executable = /usr/libexec/dovecot/imap
  57. }
  58. service pop3-login {
  59. executable = /usr/libexec/dovecot/pop3-login
  60. inet_listener pop3 {
  61. address = *
  62. port = 110
  63. }
  64. inet_listener pop3s {
  65. port = 995
  66. ssl = yes
  67. }
  68. }
  69. service pop3 {
  70. executable = /usr/libexec/dovecot/pop3
  71. }
  72. userdb {
  73. args = /etc/dovecot/dovecot-sql.conf
  74. driver = sql
  75. }
  76. protocol lda {
  77. auth_socket_path = /var/run/dovecot/auth-master
  78. postmaster_address = [email protected]
  79. mail_plugins = $mail_plugins sieve
  80. }
  81.  
  82.  
  83.  
  84. service managesieve-login {
  85. inet_listener sieve {
  86. port = 4190
  87. }
  88. }
  89.  
  90. service managesieve {
  91. # Defaults are OK, so nothing in this section.
  92. }
  93.  
  94. protocol sieve {
  95. # Defaults are OK, so nothing in this section.
  96. }
  97.  
  98.  
  99. protocol imap {
  100. mail_plugins = $mail_plugins autocreate
  101. }
  102.  
  103. plugin {
  104. autocreate = INBOX
  105. autocreate2 = Sent
  106. autocreate3 = Trash
  107. autocreate4 = Drafts
  108. autocreate5 = Junk
  109. autosubscribe = INBOX
  110. autosubscribe2 = Sent
  111. autosubscribe3 = Trash
  112. autosubscribe4 = Drafts
  113. autosubscribe5 = Junk
  114. sieve = ~/.dovecot.sieve
  115. sieve_dir = ~/sieve
  116. sieve_global_path = /etc/dovecot/sieve/default.sieve
  117. sieve_global_dir = /etc/dovecot/sieve/
  118. }
Advertisement
Add Comment
Please, Sign In to add comment