postfix smtp-auth auf debian

perlitz

Registered User
Hallo,

ich springe hier noch ausm Fenster... Versuche schon über 12 Stunden auf nem debian smtp-auth mit Postfix hinzubekomen... es geht immer von einem zum anderem Fehler. :(

Zur Zeit stehe ich hier:
mail.log
Code:
warning: SASL authentication failure: cannot connect to saslauthd server: No such file or directory
main.cf
Code:
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain =
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
master.cf
Code:
smtp      inet  n       -       -       -       -       smtpd
#submission inet n      -       -       -       -       smtpd
#       -o smtpd_etrn_restrictions=reject
#628      inet  n       -       -       -       -       qmqpd
pickup    fifo  n       -       -       60      1       pickup
cleanup   unix  n       -       -       -       0       cleanup
qmgr      fifo  n       -       -       300     1       qmgr
#qmgr     fifo  n       -       -       300     1       oqmgr
rewrite   unix  -       -       -       -       -       trivial-rewrite
bounce    unix  -       -       -       -       0       bounce
defer     unix  -       -       -       -       0       bounce
trace     unix  -       -       -       -       0       bounce
verify    unix  -       -       -       -       1       verify
flush     unix  n       -       -       1000?   0       flush
proxymap  unix  -       -       n       -       -       proxymap
smtp      unix  -       -       -       -       -       smtp
relay     unix  -       -       -       -       -       smtp
#       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq     unix  n       -       -       -       -       showq
error     unix  -       -       -       -       -       error
local     unix  -       n       n       -       -       local
virtual   unix  -       n       n       -       -       virtual
lmtp      unix  -       -       n       -       -       lmtp
anvil     unix  -       -       n       -       1       anvil
#
# Interfaces to non-Postfix software. Be sure to examine the manual
# pages of the non-Postfix software to find out what options it wants.
#
# maildrop. See the Postfix MAILDROP_README file for details.
#
maildrop  unix  -       n       n       -       -       pipe
  flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
uucp      unix  -       n       n       -       -       pipe
  flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
ifmail    unix  -       n       n       -       -       pipe
  flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
bsmtp     unix  -       n       n       -       -       pipe
  flags=Fq. user=bsmtp argv=/usr/lib/bsmtp/bsmtp -d -t$nexthop -f$sender $recipient
scalemail-backend unix  -       n       n       -       2       pipe
  flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store ${nexthop} ${user} ${extension}
/etc/default/saslauthd
Code:
START=yes
MECHANISMS="pam"
/etc/postfix/sasl/smtpd.conf
Code:
pwcheck_method: saslauthd
mech_list: PLAIN LOGIN
saslauthd_path: /var/run/saslauthd/mux
autotransition: true
ach ja
Code:
/etc/postfix/sasl# ps aux | grep sas
root      1166  0.0  0.1  6552 1580 ?        Ss   19:25   0:00 /usr/sbin/saslauthd -a pam
root      1167  0.0  0.1  6552 1580 ?        S    19:25   0:00 /usr/sbin/saslauthd -a pam
root      1168  0.0  0.1  6552 1580 ?        S    19:25   0:00 /usr/sbin/saslauthd -a pam
root      1169  0.0  0.1  6552 1580 ?        S    19:25   0:00 /usr/sbin/saslauthd -a pam
root      1170  0.0  0.1  6552 1580 ?        S    19:25   0:00 /usr/sbin/saslauthd -a pam

hilfe :confused:
 
Last edited by a moderator:
Poste mal bitte den Output von 'ls -la /var/spool/postfix/var/run'

Ich schätze mal das der saslauthd noch nicht in der chroot-Umgebung von Postfix vorhanden ist.

Gruss C.
 
Back
Top