web-dev-qa-db-ja.com

postfix sasl "saslauthdサーバーに接続できません:そのようなファイルまたはディレクトリはありません"

SMTP認証でPostfixをセットアップしようとします。/etc/shadowを私の領域として使用したい

残念ながら、認証しようとすると「一般的なエラー」が表示されます

# nc localhost 25
220 mail.foo ESMTP Postfix
AUTH PLAIN _base_64_encoded_user_name_and_password_
535 5.7.8 Error: authentication failed: generic failure

の中に mail.warn logfile次のエントリを取得します

Oct  8 10:43:40 mail postfix/smtpd[1060]: warning: SASL authentication failure: cannot connect to saslauthd server: No such file or directory
Oct  8 10:43:40 mail postfix/smtpd[1060]: warning: SASL authentication failure: Password verification failed
Oct  8 10:43:40 mail postfix/smtpd[1060]: warning: _ip_: SASL PLAIN authentication failed: generic failure

ただし、Saslの設定は問題ないようです

$ testsaslauthd -u _user_ -p _pass_
0: OK "Success."

追加した smtpd_sasl_auth_enable = yesをmain.cfに

これは私のsmtpd.confです

$ cat /etc/postfix/sasl/smtpd.conf 
pwcheck_method: saslauthd
mech_list: PLAIN LOGIN
saslauthd_path: /var/run/saslauthd/mux
autotransition:true

私はこのconfを最後の2つのコマンドを使用して、および使用せずに試しました。

私はdebian stableを実行しています。

Postfixはどのようにしてsaslauthdサーバーを見つけて接続できますか?

編集:

Postfixがchrootで実行されるかどうかわかりませんmaster.cfは次のようになります: http://Pastebin.com/Fz38TcUP

saslauthはsbinにあります

$ which saslauthd
/usr/sbin/saslauthd

EHLOにはこの応答があります

EHLO _server_name_
250-_server_name_
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-AUTH LOGIN PLAIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
11
user97262

/ var/run/saslauthdから/ var/spool/postfix/var/run/saslauthdへのシンボリックリンクが不足している可能性がありますか?

私の作業システムから:

root@mail:/etc/postfix/sasl# ls -la /var/run/saslauthd
lrwxrwxrwx 1 root root 36 Dec 31  2010 /var/run/saslauthd -> /var/spool/postfix/var/run/saslauthd
7
Paul Gear