主题: 如何取消 insecure SMTP connection ?

==== 必填信息。没有填写将不予回复 ====
- iRedMail 版本号:0.94
- 使用哪个数据库存储用户帐号(OpenLDAP,MySQL,PostgreSQL):MySQL
- 使用的 Linux/BSD 发行版名称及版本号:Centos6.4
- 与您的问题相关的日志信息:
====
新手,刚接手邮件服务器。
发信部分:
安装完成后使用默认配置
smtpd_tls_auth_only=yes
依然可以使用 25号端口发送邮件

收信部分:
disable_plaintext_auth=yes
ssl=required

假如使用110或者143端口,正常出现错误提示
Plaintext authentication disallowed on non-secure (SSL/TLS) connection

谢谢各位!

回复: 如何取消 insecure SMTP connection ?

要去掉 25 端口的 smtp 验证功能,注释掉 main.cf 里的这几个参数:

smtpd_sasl_auth_enable = yes
smtpd_tls_auth_only = yes
smtpd_sasl_security_options = noanonymous
smtpd_tls_security_level = may

只要第一个就可以,但注释掉第一个后其它几个也没有实际意义了。