Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # 2.0.14: /etc/dovecot/dovecot.conf
- # dovecot.conf file for Noway2
- auth_mechanisms = plain cram-md5 digest-md5
- base_dir = /var/run/dovecot/
- first_valid_uid = 5000
- last_valid_uid = 5000
- log_timestamp = "%Y-%m-%d %H:%M:%s "
- mail_location = maildir:/var/mail/%d/%n
- #managesieve_notify_capability = mailto
- #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
- passdb {
- args = /etc/dovecot/dovecot-sql.conf
- driver = sql
- }
- protocols = imap pop3
- service auth {
- unix_listener /var/spool/postfix/private/auth {
- group = postfix
- mode = 0660
- user = postfix
- }
- unix_listener auth-master {
- group = mail
- mode = 0660
- user = vmail
- }
- #user = nobody
- #Not sure about this one, it came from the Gentoo Wiki on Dovecot 2
- user = root
- }
- service auth-worker {
- # user = $default_internal_user
- # remembered this from gentoo docs
- user = root
- unix_listener auth-worker {
- user = postfix
- }
- }
- service imap-login {
- executable = /usr/libexec/dovecot/imap-login
- inet_listener imap {
- address = *
- port = 143
- }
- inet_listener imaps {
- address = *
- port = 993
- }
- }
- service imap {
- executable = /usr/libexec/dovecot/imap
- }
- service pop3-login {
- executable = /usr/libexec/dovecot/pop3-login
- inet_listener pop3 {
- address = *
- port = 110
- }
- inet_listener pop3s {
- address = *
- port = 995
- }
- }
- service pop3 {
- executable = /usr/libexec/dovecot/pop3
- }
- ssl_cert = </etc/postfix/ssl.crt
- ssl_key = </etc/postfix/ssl.key
- userdb {
- args = /etc/dovecot/dovecot-sql.conf
- driver = sql
- }
- protocol imap {
- imap_client_workarounds = tb-extra-mailbox-sep
- imap_max_line_length = 64 k
- }
- protocol pop3 {
- pop3_uidl_format = %08Xu%08Xv
- }
- protocol lda {
- auth_socket_path = /var/run/dovecot/auth-master
- postmaster_address = postmaster@
- sendmail_path = /usr/lib/sendmail
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement