Difference between revisions of "Error : warning: TLS library problem: 2023"
From DevOps Notebook
(Created page with "PHP fails to verify peer certificate because unknown CA.<br> This can be fixed by adding correct certificate or <br> by removing verify in config.inc.php of roundcoube <br> <...") |
(No difference)
|
Latest revision as of 12:08, 16 February 2021
PHP fails to verify peer certificate because unknown CA.
This can be fixed by adding correct certificate or
by removing verify in config.inc.php of roundcoube
$config['smtp_conn_options'] = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
),
);