|
发表于 2006-10-20 14:17:46
|
显示全部楼层
/etc/exim4/exim4.conf.template,exim4配置文件,找到下面的文字
# Because AUTH PLAIN and AUTH LOGIN send the password in clear, we
# only allow these mechanisms over encrypted connections by default.
# You can set AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS to allow unencrypted
# clear text password authentication on all connections.
看懂了就知道了,因为email服务器的授权方式是明文方式验证的,所以要加入:
AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS = 1 |
|