From LedHed's Wiki
Dovecot is an open source IMAP/POP3 server for *nix Operating Systems
More info at: http://www.dovecot.org
Documentation at: http://wiki.dovecot.org
Example Conf
protocols = imaps pop3s
listen = *
shutdown_clients = yes
ssl_disable = no
ssl_cert_file = /etc/pki/tls/certs/server.crt
ssl_key_file = /etc/pki/tls/certs/server.key
default_mail_env = maildir:/usr/local/virtual/%u
protocol imap {
ssl_listen = *:993
}
protocol pop3 {
ssl_listen = *:995
}
auth_executable = /usr/libexec/dovecot/dovecot-auth
auth default {
mechanisms = plain login
passdb sql {
args = /etc/dovecot-sql.conf
}
userdb sql {
args = /etc/dovecot-sql.conf
}
user = root
socket listen {
client listen {
path = /var/spool/postfix/private/auth
mode = 0660
user = postfix
group = postfix
}
}
}
This category currently contains no pages or media.