Fehler in Auth-Log wegen Postfix-SMTP-Auth, komisch

Debian macht sich hervorragend als Web- und Mailserver. Schau auch in den " Tipps und Tricks"-Bereich.
Antworten
syscologne
Beiträge: 24
Registriert: 12.01.2003 19:33:54

Fehler in Auth-Log wegen Postfix-SMTP-Auth, komisch

Beitrag von syscologne » 19.02.2003 02:08:57

Hi,

folgendes Problem:
Mein Mailserver funktioniert wunderbar, auch smtp-auth.
der sucht sich mit pam-mysql immer die daten aus einer mysql-datenbank, die er braucht; auch, um smtp zu authentifizieren. Läuft super.

Nun schreibt der mir aber trotzdem folgendes in das auth.log - Logfile, obwohl ich sasldb doch gar nicht benutze:

Code: Alles auswählen

Feb 19 00:26:27 debian postfix/smtpd[529]: unable to open Berkeley db /etc/sasldb: No such file or directory
Feb 19 00:26:27 debian postfix/smtpd[529]: unable to open Berkeley db /etc/sasldb: No such file or directory
da steht nirgendwo was, daß ich diese komische sasldb haben will.
hat jemand eine idee?
Unter meiner /etc/main.cf steht folgendes smtp-relevantes:

Code: Alles auswählen

broken_sasl_auth_clients = yes
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain = syscologne.biz

maps_rbl_domains =  rbl.maps.vix.com,
                    relays.mail-abuse.org,
                    relays.ordb.org,
                    dev.null.dk,
                    spews.relays.osirusoft.com,
                    spamhaus.relays.osirusoft.com,
                    relays.visi.com

smtpd_recipient_restrictions =  permit_mynetworks,
                                permit_sasl_authenticated,
                                reject_maps_rbl,
                                check_relay_domains,
                                reject
in /etc/postfix/sasl/smtpd.conf steht folgendes:

Code: Alles auswählen

pwcheck_method: pam
ein "postconf | grep sasl" bringt folgendes:

Code: Alles auswählen

debian:/etc/postfix# postconf | grep sasl
broken_sasl_auth_clients = yes
lmtp_sasl_auth_enable = no
lmtp_sasl_password_maps =
lmtp_sasl_security_options = noplaintext, noanonymous
smtp_sasl_auth_enable = no
smtp_sasl_password_maps =
smtp_sasl_security_options = noplaintext, noanonymous
smtpd_recipient_restrictions = permit_mynetworks,                               permit_sasl_authenticated,                              reject_maps_rbl,                            check_relay_domains,                            reject
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain = syscologne.biz
smtpd_sasl_security_options = noanonymous

Antworten