Advertisement
Guest User

doveconf -n output

a guest
Aug 23rd, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.01 KB | None | 0 0
  1. $ doveconf -n
  2. # 2.2.22 (fe789d2): /etc/dovecot/dovecot.conf
  3. # Pigeonhole version 0.4.13 (7b14904)
  4. # OS: Linux 4.4.0-34-generic x86_64 Ubuntu 16.04.1 LTS
  5. auth_mechanisms = plain login
  6. disable_plaintext_auth = no
  7. listen = *,[::]
  8. log_timestamp = "%Y-%m-%d %H:%M:%S "
  9. mail_max_userip_connections = 100
  10. mail_plugins = " quota"
  11. mail_privileged_group = vmail
  12. passdb {
  13. args = /etc/dovecot/dovecot-sql.conf
  14. driver = sql
  15. }
  16. plugin {
  17. antispam_backend = pipe
  18. antispam_debug_target = syslog
  19. antispam_pipe_program = /bin/bash
  20. antispam_pipe_program_args = /usr/local/bin/sa-learn-pipe-test.sh
  21. antispam_pipe_program_notspam_arg = --ham
  22. antispam_pipe_program_spam_arg = --spam
  23. antispam_pipe_tmpdir = /tmp
  24. antispam_spam_pattern_ignorecase = SPAM;JUNK
  25. antispam_trash_pattern_ignorecase = trash;Deleted *
  26. antispam_verbose_debug = 1
  27. quota = dict:user::file:/var/vmail/%d/%n/.quotausage
  28. quota_rule2 = Trash:storage=+100M
  29. quota_rule3 = Junk:ignore
  30. quota_rule4 = INBOX:storage=+100M
  31. quota_warning = storage=100%% quota-reached 100 %u %d
  32. quota_warning2 = storage=95%% quota-warning 95 %u %d
  33. quota_warning3 = storage=80%% quota-warning 80 %u %d
  34. quota_warning4 = -storage=100%% quota-below below %u %d
  35. sieve = /var/vmail/%d/%n/.sieve
  36. sieve_max_redirects = 25
  37. }
  38. postmaster_address = postmaster@example.org
  39. protocols = imap pop3
  40. service auth {
  41. unix_listener /var/spool/postfix/private/auth {
  42. group = postfix
  43. mode = 0660
  44. user = postfix
  45. }
  46. unix_listener auth-userdb {
  47. group = vmail
  48. mode = 0600
  49. user = vmail
  50. }
  51. user = root
  52. }
  53. service config {
  54. unix_listener config {
  55. group = vmail
  56. mode = 0600
  57. user = vmail
  58. }
  59. }
  60. service imap-login {
  61. client_limit = 1000
  62. process_limit = 512
  63. }
  64. service lmtp {
  65. unix_listener /var/spool/postfix/private/dovecot-lmtp {
  66. group = postfix
  67. mode = 0600
  68. user = postfix
  69. }
  70. }
  71. service quota-below {
  72. executable = script /usr/local/bin/quota-below.sh
  73. unix_listener quota-below {
  74. group = vmail
  75. mode = 0666
  76. user = vmail
  77. }
  78. user = vmail
  79. }
  80. service quota-reached {
  81. executable = script /usr/local/bin/quota-reached.sh
  82. unix_listener quota-reached {
  83. group = vmail
  84. mode = 0666
  85. user = vmail
  86. }
  87. user = vmail
  88. }
  89. service quota-warning {
  90. executable = script /usr/local/bin/quota-warning.sh
  91. unix_listener quota-warning {
  92. group = vmail
  93. mode = 0666
  94. user = vmail
  95. }
  96. user = vmail
  97. }
  98. ssl_cert = </etc/postfix/smtpd.cert
  99. ssl_key = </etc/postfix/smtpd.key
  100. ssl_protocols = !SSLv2 !SSLv3
  101. userdb {
  102. driver = prefetch
  103. }
  104. userdb {
  105. args = /etc/dovecot/dovecot-sql.conf
  106. driver = sql
  107. }
  108. protocol imap {
  109. mail_plugins = quota imap_quota antispam
  110. }
  111. protocol pop3 {
  112. mail_plugins = quota
  113. pop3_uidl_format = %08Xu%08Xv
  114. }
  115. protocol lda {
  116. info_log_path = /var/log/dovecot-lda.log
  117. log_path = /var/log/dovecot-lda-errors.log
  118. mail_plugins = sieve quota
  119. }
  120. protocol lmtp {
  121. mail_plugins = quota sieve
  122. postmaster_address = webmaster@localhost
  123. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement