根据使用 imap 的验证程序,远程证书无效
the remote certificate is invalid according to the validation procedure using imap
我使用 IMAP 要求和 SMTP 发送命令编写了 NET 4.5 客户端应用程序工具。
现在我当前的问题是我在一个客户端上遇到以下异常:
the remote certificate is invalid according to the validation
procedure
我将代码更改为:
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
所以应该接受所有证书。服务器需要 SSL。相同的连接信息与 outlook 或 thunderbird 一起使用没有错误。
这可能是一些信任问题,例如 client/server 上缺少根 CA 或中间证书。
可以将这些验证问题记录(如果启用)到 CAPI2 事件日志中。 可能对你有帮助。
我使用 IMAP 要求和 SMTP 发送命令编写了 NET 4.5 客户端应用程序工具。
现在我当前的问题是我在一个客户端上遇到以下异常:
the remote certificate is invalid according to the validation procedure
我将代码更改为:
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
所以应该接受所有证书。服务器需要 SSL。相同的连接信息与 outlook 或 thunderbird 一起使用没有错误。
这可能是一些信任问题,例如 client/server 上缺少根 CA 或中间证书。
可以将这些验证问题记录(如果启用)到 CAPI2 事件日志中。