SHARE
TWEET

Untitled

a guest Apr 3rd, 2011 116 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. login_user = dovecot
  2. mail_privileged_group = vmail
  3. base_dir = /var/run/dovecot
  4. auth_verbose = yes
  5. ssl = yes
  6. ssl_cert_file = /etc/ssl/mail.crt
  7. ssl_key_file = /etc/ssl/mail.key
  8. ssl_ca_file = /etc/ssl/mail.pem
  9. ssl_verify_client_cert = no
  10. disable_plaintext_auth = no
  11. protocols = imap imaps pop3 pop3s
  12. mail_location = maildir:/srv/mail/%d/%u
  13. protocol imap {
  14.         listen = *:143
  15.         ssl_listen = *:993
  16.         mail_executable = /usr/lib/dovecot/imap
  17.         login_executable = /usr/lib/dovecot/imap-login
  18. }
  19. protocol pop3 {
  20.         listen = *:110
  21.         ssl_listen = *:995
  22.         mail_executable = /usr/lib/dovecot/pop3
  23.         login_executable = /usr/lib/dovecot/pop3-login
  24. }
  25. protocol lda {
  26.         postmaster_address = postmaster@mydomain.com
  27.         sendmail_path = /usr/lib/sendmail
  28.         auth_socket_path = /var/run/dovecot/auth-master
  29. }
  30. auth default {
  31.         mechanisms = plain
  32.         userdb sql {
  33.                 args = /etc/dovecot/dovesql.conf
  34.         }
  35.         passdb sql {
  36.                 args = /etc/dovecot/dovesql.conf
  37.         }
  38.         socket listen {
  39.                 client {
  40.                         path = /var/spool/postfix/private/auth
  41.                         mode = 0660
  42.                         user = postfix
  43.                         group = postfix
  44.                 }
  45.         }
  46. }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top