daily pastebin goal
52%
SHARE
TWEET

dovecot -n

a guest Aug 14th, 2015 172 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # 2.1.7: /etc/dovecot/dovecot.conf
  2. # OS: Linux 3.2.0-4-amd64 x86_64 Debian 7.8 ext3
  3. disable_plaintext_auth = no
  4. first_valid_uid = 150
  5. mail_location = maildir:/var/vmail/%d/%u
  6. mail_privileged_group = mail
  7. namespace inbox {
  8.   inbox = yes
  9.   location =
  10.   mailbox Drafts {
  11.     special_use = \Drafts
  12.   }
  13.   mailbox Junk {
  14.     special_use = \Junk
  15.   }
  16.   mailbox Sent {
  17.     special_use = \Sent
  18.   }
  19.   mailbox "Sent Messages" {
  20.     special_use = \Sent
  21.   }
  22.   mailbox Trash {
  23.     special_use = \Trash
  24.   }
  25.   mailbox virtual/All {
  26.     special_use = \All
  27.   }
  28.   mailbox virtual/Flagged {
  29.     special_use = \Flagged
  30.   }
  31.   prefix =
  32. }
  33. passdb {
  34.   args = scheme=CRYPT username_format=%u /etc/dovecot/users
  35.   driver = passwd-file
  36. }
  37. plugin {
  38.   sieve = ~/.dovecot.sieve
  39.   sieve_dir = ~/sieve
  40. }
  41. postmaster_address = postmaster@wilddax.com
  42. protocols = " imap lmtp"
  43. service auth {
  44.   unix_listener /var/spool/postfix/private/auth {
  45.     mode = 0666
  46.   }
  47.   unix_listener auth-userdb {
  48.     group = postfix
  49.     mode = 0666
  50.     user = postfix
  51.   }
  52.   user = $default_internal_user
  53. }
  54. service imap-login {
  55.   inet_listener imap {
  56.     port = 143
  57.   }
  58. }
  59. service lmtp {
  60.   unix_listener lmtp {
  61.     group = postfix
  62.     user = postfix
  63.   }
  64. }
  65. ssl_cert = </etc/dovecot/dovecot.pem
  66. ssl_key = </etc/dovecot/private/dovecot.pem
  67. userdb {
  68.   args = username_format=%u /etc/dovecot/users
  69.   driver = passwd-file
  70. }
  71. protocol lda {
  72.   mail_plugins =
  73. }
  74. protocol imap {
  75.   mail_plugins =
  76. }
RAW Paste Data
Top