Advertisement
Guest User

dovecot -n

a guest
May 9th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. # 2.2.13: /etc/dovecot/dovecot.conf
  2. # OS: Linux 3.16.0-4-amd64 x86_64 Debian 8.8
  3. disable_plaintext_auth = no
  4. doveadm_password = ifinReplica
  5. doveadm_port = 12345
  6. mail_location = mbox:~/mail:INBOX=/var/mail/%u
  7. mail_plugins = " notify replication"
  8. mail_privileged_group = mail
  9. namespace inbox {
  10. inbox = yes
  11. location =
  12. mailbox Drafts {
  13. special_use = \Drafts
  14. }
  15. mailbox Junk {
  16. special_use = \Junk
  17. }
  18. mailbox Sent {
  19. special_use = \Sent
  20. }
  21. mailbox "Sent Messages" {
  22. special_use = \Sent
  23. }
  24. mailbox Trash {
  25. special_use = \Trash
  26. }
  27. prefix =
  28. }
  29. passdb {
  30. args = scheme=SHA-256CRYPT username_format=%u /etc/dovecot/users
  31. driver = passwd-file
  32. }
  33. passdb {
  34. driver = pam
  35. }
  36. plugin {
  37. mail_replica = tcp:mail01.ifin.loc
  38. replication_sync_timeout = 2s
  39. }
  40. protocols = " imap"
  41. service aggregator {
  42. fifo_listener replication-notify-fifo {
  43. group = root
  44. mode = 0666
  45. user = mail
  46. }
  47. unix_listener replication-notify {
  48. group = root
  49. mode = 0666
  50. user = mail
  51. }
  52. }
  53. service config {
  54. unix_listener config {
  55. user = mail
  56. }
  57. }
  58. service doveadm {
  59. inet_listener {
  60. port = 12345
  61. }
  62. }
  63. service imap-login {
  64. inet_listener imap {
  65. port = 143
  66. }
  67. }
  68. service replicator {
  69. process_min_avail = 1
  70. unix_listener replicator-doveadm {
  71. mode = 0666
  72. }
  73. }
  74. ssl = no
  75. userdb {
  76. args = username_format=%u /etc/dovecot/users
  77. default_fields = gid=mail home=/var/mail/%u
  78. driver = passwd-file
  79. }
  80. userdb {
  81. driver = passwd
  82. }
  83. protocol imap {
  84. mail_plugins = autocreate
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement