diff --git a/dovecot/config/dovecot.conf b/dovecot/config/dovecot.conf new file mode 100644 index 0000000..e417471 --- /dev/null +++ b/dovecot/config/dovecot.conf @@ -0,0 +1,40 @@ +# 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) +default_pass_scheme = PLAIN + +# Mail-Berechtigungen +mail_uid = vmail +mail_gid = vmail + +# SSL-Konfiguration +ssl = yes +ssl_cert =