- 🇷🇺Russia skylord
Was solved in 1.8, see #2566561: PHP 5.6 SSL operation failed with code 1 →
We had a use case where skipping cert verification was needed when using TLS. The client's SMTP server had a certificate which the server could not verify.
The error we were getting was:
stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
According to https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting#updating-ca-... newer versions of the library can pass
options to the connection method.
Not sure if this is the approach we want, but here is a patch that brings in that part of the library. It's passed in as a Drupal variable and not configurable via Ui (not sure if that would make sense).
Closed: duplicate
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Was solved in 1.8, see #2566561: PHP 5.6 SSL operation failed with code 1 →