Advertisement
Justin_SE

dovecot.conf

Feb 15th, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. base_dir = /var/run/dovecot/
  2. first_valid_uid = 200
  3. mail_debug = yes
  4. mail_gid = 12
  5. mail_location = Maildir:~/
  6. mail_uid = 200
  7. managesieve_notify_capability = mailto
  8. 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
  9. passdb {
  10. args = /etc/dovecot/dovecot-pgsql.conf
  11. driver = sql
  12. }
  13. plugin {
  14. autocreate = Trash
  15. autocreate2 = Sent
  16. autocreate3 = Drafts
  17. autocreate4 = Templates
  18. autocreate5 = Junk
  19. autosubscribe = Trash
  20. autosubscribe2 = Sent
  21. autosubscribe3 = Drafts
  22. autosubscribe4 = Templates
  23. autosubscribe5 = Junk
  24. sieve = /~.user.sieve
  25. sieve_global_dir = /home/mail/sieve_scripts/
  26. sieve_global_path = /home/mail/sieve_scripts/global.sieve
  27. }
  28. protocols = imap sieve
  29. service auth {
  30. unix_listener /var/spool/postfix/private/auth {
  31. group = postfix
  32. mode = 0660
  33. user = postfix
  34. }
  35. unix_listener auth-userdb {
  36. mode = 0600
  37. user = mailreader
  38. }
  39. }
  40. ssl = required
  41. ssl_cert = </etc/pki/tls/certs/mail.mywebsite.com/mail.mywebsite.com_bundle.crt
  42. ssl_key = </etc/pki/tls/certs/mail.mywebsite.com/mail.mywebsite.com.key
  43. userdb {
  44. driver = prefetch
  45. }
  46. userdb {
  47. args = /etc/dovecot/dovecot-pgsql.conf
  48. driver = sql
  49. }
  50. protocol imap {
  51. mail_plugins = " autocreate"
  52. }
  53. protocol sieve {
  54. info_log_path = /var/log/dovecot-sieve.log
  55. log_path = /var/log/dovecot-sieve-errors.log
  56. managesieve_implementation_string = dovecot
  57. managesieve_max_line_length = 65536
  58. }
  59. protocol lda {
  60. hostname = mail.mywebsite.com
  61. mail_plugins = " sieve"
  62. postmaster_address = [email protected]
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement