Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个正在尝试部署的应用程序(Discourse的安装)。但是,它指向的电子邮件服务器具有用于 SMTP 的自签名 ssl 证书。
有解决方法吗?或者我是否需要找到一种使用“有效”SSL 证书发送邮件的方法?
很少有事情真正关心 SMTP 的正确证书。主要是用户代理。
如果证书有问题,您将不会超时,您将收到验证错误。我怀疑发生的事情是您尝试通过防火墙未侦听或暴露的 SMTPS 端口进行连接。
尝试使用 SMTP+STARTTLS。这会通过端口 25 或 587 协商 TLS,而不是尝试直接连接到 465。