41 lines
882 B
Plaintext
41 lines
882 B
Plaintext
# /etc/dovecot/dovecot.conf (im Container)
|
|
|
|
# Grundlegende Einstellungen
|
|
protocols = imap
|
|
listen = *, ::
|
|
|
|
# Benutzerauthentifizierung
|
|
auth_mechanisms = plain login
|
|
|
|
# Plaintext-Authentifizierung erlauben
|
|
disable_plaintext_auth = no
|
|
|
|
passdb {
|
|
driver = passwd-file
|
|
args = /etc/dovecot/users
|
|
}
|
|
userdb {
|
|
driver = passwd-file
|
|
args = /etc/dovecot/users
|
|
}
|
|
|
|
# Mail-Speicherort
|
|
mail_location = maildir:/var/mail/%u
|
|
|
|
# Da wir hinter Caddy sind, können wir TLS auf Dovecot deaktivieren
|
|
# oder nur intern auf nicht-exponierten Ports aktivieren
|
|
ssl = no
|
|
|
|
# Wenn Sie dennoch direkten Zugriff auf Dovecot ermöglichen möchten:
|
|
# ssl = yes
|
|
# ssl_cert = </etc/dovecot/ssl/fullchain.pem
|
|
# ssl_key = </etc/dovecot/ssl/privkey.pem
|
|
|
|
# IMAP-Konfiguration
|
|
# protocol imap {
|
|
# mail_plugins = $mail_plugins
|
|
# }
|
|
|
|
# Logging
|
|
log_path = /var/log/dovecot.log
|
|
info_log_path = /var/log/dovecot-info.log |