我正在使用 Postfix 和 Courier-IMAP 设置邮件服务器。我想用 rimap 进行 SMTP 身份验证,这样我就不必维护两个用户数据库。我遇到的问题是用户名后缀传递的域名被剥离了。它应该是“[email protected]”,它变成了“john”。
登录到 IMAP 服务器有效,testsaslauthd -u [email protected] -p password
.
使用smtpd_sasl_local_domain
(设置或取消设置)没有区别。
这个帖子好像不行。即使当我尝试使用 uasdfer@asdfasdf 登录时,它也会删除域部分。
后缀 sasl:
# cat main.cf |grep -i sasl
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_mynetworks permit_sasl_authenticated reject_unauth_destination reject_rbl_client zen.spamhaus.org check_policy_service unix:private/policyd-spf
萨斯配置:
# cat saslauthd |grep -v "#"|grep -v -E "^$"
START=yes
DESC="SASL Authentication Daemon"
NAME="saslauthd"
MECHANISMS="rimap"
MECH_OPTIONS="127.0.0.1"
THREADS=5
OPTIONS="-c -m /var/run/saslauthd"
服务器版本:
- Debian 6.0.7
- 后缀 2.7.1-1+squeeze1
- 快递 4.8.0-3
您可能只需要添加
-r
到您的 saslauthdOPTIONS=
节。从手册页