Advertisement
Guest User

doveconf -n output

a guest
Jun 24th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. # 2.0.19: /etc/dovecot/dovecot.conf
  2. # OS: Linux 2.6.32-042stab076.8 x86_64 Ubuntu 12.04.2 LTS
  3. auth_mechanisms = plain login
  4. disable_plaintext_auth = no
  5. listen = *,[::]
  6. log_timestamp = "%Y-%m-%d %H:%M:%S "
  7. mail_debug = yes
  8. mail_privileged_group = vmail
  9. managesieve_notify_capability = mailto
  10. managesieve_sieve_capability = fileinto reject envelope encoded-character vacation subaddress comparator-i;ascii-numeric relational regex imap4flags copy include variables body enotify environment mailbox date ihave
  11. passdb {
  12. args = /etc/dovecot/dovecot-sql.conf
  13. driver = sql
  14. }
  15. plugin {
  16. antispam_backend = pipe
  17. antispam_debug_target = syslog
  18. antispam_pipe_program = /bin/bash
  19. antispam_pipe_program_args = /usr/bin/sa-learn-pipe.sh
  20. antispam_pipe_program_notspam_arg = --ham
  21. antispam_pipe_program_spam_arg = --spam
  22. antispam_pipe_tmpdir = /tmp
  23. antispam_spam_pattern_ignorecase = SPAM;JUNK
  24. antispam_trash_pattern_ignorecase = trash;Deleted *
  25. antispam_verbose_debug = 1
  26. quota = dict:user::file:/var/vmail/%d/%n/.quotausage
  27. quota_rule2 = Trash:storage=+100M
  28. quota_rule3 = Junk:ignore
  29. quota_rule4 = Inbox:storage=+100M
  30. quota_warning = storage=95%% quota-warning 95 %u %d
  31. quota_warning2 = storage=80%% quota-warning 80 %u %d
  32. quota_warning3 = -storage=100%% quota-below below %u %d
  33. sieve = /var/vmail/%d/%n/.sieve
  34. }
  35. protocols = imap pop3 sieve
  36. service auth {
  37. unix_listener /var/spool/postfix/private/auth {
  38. group = postfix
  39. mode = 0660
  40. user = postfix
  41. }
  42. unix_listener auth-userdb {
  43. group = vmail
  44. mode = 0600
  45. user = vmail
  46. }
  47. user = root
  48. }
  49. service config {
  50. unix_listener config {
  51. group = vmail
  52. mode = 0600
  53. user = vmail
  54. }
  55. }
  56. service quota-below {
  57. executable = script /usr/local/bin/quota-below.sh
  58. unix_listener quota-below {
  59. group = vmail
  60. mode = 0666
  61. user = vmail
  62. }
  63. user = vmail
  64. }
  65. service quota-warning {
  66. executable = script /usr/local/bin/quota-warning.sh
  67. unix_listener quota-warning {
  68. group = vmail
  69. mode = 0666
  70. user = vmail
  71. }
  72. user = vmail
  73. }
  74. ssl_cert = </etc/postfix/smtpd.cert
  75. ssl_key = </etc/postfix/smtpd.key
  76. userdb {
  77. args = /etc/dovecot/dovecot-sql.conf
  78. driver = sql
  79. }
  80. protocol imap {
  81. mail_plugins = quota imap_quota antispam
  82. }
  83. protocol pop3 {
  84. mail_plugins = quota
  85. pop3_uidl_format = %08Xu%08Xv
  86. }
  87. protocol lda {
  88. info_log_path =
  89. log_path =
  90. mail_plugins = sieve quota
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement