我寻找一种方法来强制lamba用户使用TLS连接到dovecot服务器。
我遵循文档http://wiki2.dovecot.org/SSL/DovecotConfiguration ,我编辑如下的鸽舍configuration:
ssl = required disabled_plain_text = yes
然后我重新加载并重新启动dovecot。
然后,通过inputtelnet localhost 143连接到dovecot服务器。
但我可以再次连接到邮箱用户(通过input密码login),而dovecot应通知我使用tls之前。
一个主意 ? 在此先感谢,亲切。
我想你想要
disable_plaintext_auth = yes
代替
disabled_plain_text = yes
如果你真的想要确保没有人会尝试以明文login,只使用隐式的SSL,即端口993,不要在端口143上侦听。