Error : warning: TLS library problem: 2023

From DevOps Notebook
Revision as of 12:08, 16 February 2021 by MilosZ (talk | contribs) (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> <...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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,
  ),
);