OVH Community, your new community space.

Nach Upgrade von Debian Etch zu Lenny: cannot connect to saslauthd server: Permission


Jenstheclown
22.02.09, 12:45
Zitat Zitat von MoD.666
Nach dem Upgrade von Etch zu Lenny funktionierte saslauthd nicht mehr richtig. Deshalb nahm Postfix keine ausgehenden Mails mehr an und produzierte im Mail-Log Folgendes:

.....
THX

MoD.666
21.02.09, 12:37
Nach dem Upgrade von Etch zu Lenny funktionierte saslauthd nicht mehr richtig. Deshalb nahm Postfix keine ausgehenden Mails mehr an und produzierte im Mail-Log Folgendes:
SASL authentication failure: Password verification failed
SASL PLAIN authentication failed: generic failure
SASL authentication failure: cannot connect to saslauthd server: Permission denied
SASL LOGIN authentication failed: generic failure
Die Lösung wird hier dokumentiert: /usr/share/doc/sasl2-bin/README.Debian.gz
Also legen wir los:
Code:
vi /etc/default/saslauthd
änderen OPTIONS so ab:
OPTIONS="-c -m /var/spool/postfix/var/run/saslauthd"
Danach als root ausführen:
Code:
dpkg-statoverride --add root sasl 710 /var/spool/postfix/var/run/saslauthd
Den Postfix-User in die sasl-Gruppe einfügen:
Code:
adduser postfix sasl
saslauthd und postfix neu starten:
Code:
/etc/init.d/sasauthd restart
/etc/init.d/postfix restart
Hoffe, dass Euch das weiter hilft!

So long