Advertisement
Guest User

Untitled

a guest
Apr 12th, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. root@leaf /etc/postfix # dovecot -n
  2. # 2.1.7: /etc/dovecot/dovecot.conf
  3. # OS: Linux 3.2.0-4-amd64 x86_64 Debian 7.4 ext4
  4. auth_mechanisms = plain login
  5. auth_verbose = yes
  6. mail_location = maildir:/var/vmail/%d/%n/Maildir
  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 ihave
  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 = /etc/dovecot/dovecot-sql.conf.ext
  31. driver = sql
  32. }
  33. plugin {
  34. sieve = ~/.dovecot.sieve
  35. sieve_dir = ~/sieve
  36. }
  37. postmaster_address = postmaster@leaf
  38. protocols = " imap sieve pop3"
  39. service auth {
  40. unix_listener /var/spool/postfix/private/auth {
  41. group = postfix
  42. mode = 0666
  43. user = postfix
  44. }
  45. }
  46. ssl_cert = </etc/dovecot/dovecot.pem
  47. ssl_key = </etc/dovecot/private/dovecot.pem
  48. userdb {
  49. args = uid=vmail gid=vmail home=/var/vmail/%d/%n
  50. driver = static
  51. }
  52. protocol lda {
  53. mail_plugins = " sieve"
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement