Dovecot configuration

Configuring dovecot to let postfix using it to authenticate clients. Here is my complete dovecot.conf the postfix needed section stand just with the definition of the listening socket


protocols = imap imaps pop3 pop3s
disable_plaintext_auth = no
log_timestamp = "%Y-%m-%d %H:%M:%S "
ssl_disable = no
mail_privileged_group = mail
protocol imap {
}
protocol pop3 {
pop3_uidl_format = %08Xu%08Xv
}
auth default {
mechanisms = plain login
passdb pam {
}
user = root
socket listen {
path = /var/spool/postfix/private/auth
mode = 0660
user = postfix
group = postfix
}
}
}
dict {
}
plugin {
}

This entry was posted in Serveradmin, Unix and tagged , , , , , , . Bookmark the permalink.

Leave a Reply