dovecot.conf
This commit is contained in:
parent
76e83d7fd1
commit
01c86681f2
|
|
@ -0,0 +1,37 @@
|
|||
# /etc/dovecot/dovecot.conf (im Container)
|
||||
|
||||
# Grundlegende Einstellungen
|
||||
protocols = imap
|
||||
listen = *, ::
|
||||
|
||||
# Benutzerauthentifizierung
|
||||
auth_mechanisms = plain login
|
||||
passdb {
|
||||
driver = passwd-file
|
||||
args = scheme=CRYPT username_format=%u /etc/dovecot/users
|
||||
}
|
||||
userdb {
|
||||
driver = static
|
||||
args = uid=vmail gid=vmail home=/var/mail/%d/%n
|
||||
}
|
||||
|
||||
# Mail-Speicherort
|
||||
mail_location = mdbox:/var/mail/%d/%n
|
||||
|
||||
# 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
|
||||
Loading…
Reference in New Issue