UI 路径:根据验证程序,远程证书无效
UI Path: The Remote Certificate is invalid according to validation procedure
当我尝试使用 SMTP 发送邮件时出现错误,如下所示。
来源: 发送 SMTP 邮件消息。
消息:根据验证程序,远程证书无效。
异常类型: System.Security.Authentication.AuthenticationException.
我尝试了以下解决方案来解决。
已禁用防病毒软件。
允许来自我的 gmail 帐户的安全性较低的应用程序。
我已经阅读了下面的 UI 路径主题,但我没有找到 link 下载受信任的证书。
The remote certificate is invalid according to the validation
Windows 在证书目录中维护其受信任的 CA,您可以阅读更多相关信息 here。服务器的证书是自签名的,或者证书颁发机构不是您的证书目录的一部分(解析整个信任链)。
既然您提到了 Gmail - 这很不寻常,因为 Google Trust Services 受 Global Sign 信任,而 Global Sign 通常是 CD 的一部分。以下是 Gmail(通过端口 465 的 SMTP)所需证书的示例:
lynxvvv:~ wolfgangradl$ openssl s_client -connect smtp.gmail.com:465 -showcerts
CONNECTED(00000006)
depth=2 OU = GlobalSign Root CA - R2, O = GlobalSign, CN = GlobalSign
verify return:1
depth=1 C = US, O = Google Trust Services, CN = Google Internet Authority G3
verify return:1
depth=0 C = US, ST = California, L = Mountain View, O = Google LLC, CN = smtp.gmail.com
verify return:1
---
Certificate chain
0 s:/C=US/ST=California/L=Mountain View/O=Google LLC/CN=smtp.gmail.com
i:/C=US/O=Google Trust Services/CN=Google Internet Authority G3
-----BEGIN CERTIFICATE-----
MIIEgjCCA2qgAwIBAgIII4WYR6PlomgwDQYJKoZIhvcNAQELBQAwVDELMAkGA1UE
(...)
您始终可以下载自定义证书并将其安装到商店中,here's an excellent article from Super User. If we're talking about Gmail, then you could get them from Google directly。
验证下面的 link。首先,我们需要禁用杀毒软件。
https://forum.uipath.com/t/the-remote-certificate-is-invalid-according-to-the-validation/37727/3
当我尝试使用 SMTP 发送邮件时出现错误,如下所示。
来源: 发送 SMTP 邮件消息。
消息:根据验证程序,远程证书无效。
异常类型: System.Security.Authentication.AuthenticationException.
我尝试了以下解决方案来解决。
已禁用防病毒软件。 允许来自我的 gmail 帐户的安全性较低的应用程序。
我已经阅读了下面的 UI 路径主题,但我没有找到 link 下载受信任的证书。
The remote certificate is invalid according to the validation
Windows 在证书目录中维护其受信任的 CA,您可以阅读更多相关信息 here。服务器的证书是自签名的,或者证书颁发机构不是您的证书目录的一部分(解析整个信任链)。
既然您提到了 Gmail - 这很不寻常,因为 Google Trust Services 受 Global Sign 信任,而 Global Sign 通常是 CD 的一部分。以下是 Gmail(通过端口 465 的 SMTP)所需证书的示例:
lynxvvv:~ wolfgangradl$ openssl s_client -connect smtp.gmail.com:465 -showcerts
CONNECTED(00000006)
depth=2 OU = GlobalSign Root CA - R2, O = GlobalSign, CN = GlobalSign
verify return:1
depth=1 C = US, O = Google Trust Services, CN = Google Internet Authority G3
verify return:1
depth=0 C = US, ST = California, L = Mountain View, O = Google LLC, CN = smtp.gmail.com
verify return:1
---
Certificate chain
0 s:/C=US/ST=California/L=Mountain View/O=Google LLC/CN=smtp.gmail.com
i:/C=US/O=Google Trust Services/CN=Google Internet Authority G3
-----BEGIN CERTIFICATE-----
MIIEgjCCA2qgAwIBAgIII4WYR6PlomgwDQYJKoZIhvcNAQELBQAwVDELMAkGA1UE
(...)
您始终可以下载自定义证书并将其安装到商店中,here's an excellent article from Super User. If we're talking about Gmail, then you could get them from Google directly。
验证下面的 link。首先,我们需要禁用杀毒软件。
https://forum.uipath.com/t/the-remote-certificate-is-invalid-according-to-the-validation/37727/3