Self signed certificates not working (fix)
-
I was trying to connect to a mailbox with:
pop3 / 110 / no ssl / self signed cert.Testing this connection resulted in:
Error connecting to {xxx.xxx:110/service=pop3}
Certificate failure for xxx.xxx: self signed certificate: /C=US/ST=Someprovince/L=Sometown/O=none/OU=none/CN=localhost/emailAddress=webmaster@localhostIf I look in the source:
includes/class-mailpoet-handle-bounces.php #119:if(!$selfsigned) $serverName .= ‘/novalidate-cert’;
This should be: (Removed the !)
if($selfsigned) $serverName .= ‘/novalidate-cert’;Then my self-signed certificate is working, connection established!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Self signed certificates not working (fix)’ is closed to new replies.