40 lines
901 B
Plaintext
40 lines
901 B
Plaintext
# Dovecot Konfiguration mit Plain-Text Passwörtern
|
|
# Für Version 2.3.21.1
|
|
|
|
# Protokolle aktivieren
|
|
protocols = imap pop3
|
|
|
|
# Logging
|
|
log_path = /var/log/dovecot.log
|
|
info_log_path = /var/log/dovecot-info.log
|
|
debug_log_path = /var/log/dovecot-debug.log
|
|
|
|
# Mail-Location
|
|
mail_location = maildir:/var/mail/%u
|
|
|
|
# Authentifizierung
|
|
auth_mechanisms = plain login
|
|
disable_plaintext_auth = no
|
|
|
|
# Benutzerdatenbank (passwd-datei)
|
|
passdb {
|
|
driver = passwd-file
|
|
args = scheme=PLAIN username_format=%u /etc/dovecot/passwd
|
|
}
|
|
|
|
userdb {
|
|
driver = passwd-file
|
|
args = username_format=%u /etc/dovecot/passwd
|
|
}
|
|
|
|
# Passwort-Schema (plaintext) muss in der passdb definiert werden
|
|
# Die globale Einstellung default_pass_scheme ist nicht verfügbar
|
|
|
|
# Mail-Berechtigungen
|
|
mail_uid = vmail
|
|
mail_gid = vmail
|
|
|
|
# SSL-Konfiguration
|
|
ssl = yes
|
|
ssl_cert = </etc/dovecot/ssl/dovecot.crt
|
|
ssl_key = </etc/dovecot/ssl/dovecot.key |