Ich habe in den letzten Tagen einen Mailserver mit postfix und dovecot aufgesetzt, und inzwischen funktioniert alles bis auf die SASL Authentifizierung vom SMTP Server mittels dovecot. Und ich weiß nicht, wieso.
Hier die relevanten config Ausschnitte:
dovecot
Code: Select all
# Authentifizierungs-Info aus Datenbank
auth default {
mechanisms = plain login
passdb sql {
args = /etc/dovecot/dovecot-sql.conf
}
# steigert Performance mit Datenbank
userdb prefetch {
}
userdb sql {
args = /etc/dovecot/dovecot-sql.conf
}
user = nobody
socket listen {
master {
path = /var/run/dovecot/auth-master
mode = 0660
user = postfix
group = mail
}
client {
path = /var/spool/postfix/private/auth
mode = 0660
user = postfix
group = postfix
}
}
}
Code: Select all
# SASL
smtpd_sasl_type = dovecot
smtpd_sasl_security_options = noanonymous
smtpd_sasl_path = private/auth
smtpd_sasl_auth_enable = yes
#smtpd_sasl_exceptions_networks = $mynetworks
#smtpd_sasl_local_domain = $myhostname
broken_sasl_auth_clients = yes
Was kann ich tun, um mehr Informationen zur Ursache zu bekommen? In den Log Files finde ich gar nichts...
Danke schonmal,
Jan Oliver Oelerich