"e-mail verification fails for many addresses since upgrade from PHP 5.5 to PHP 5.6"
This commit is contained in:
Wytze van der Raay 2019-02-23 08:28:50 +00:00
parent f6b81bfed9
commit 62a2d72a07

View file

@ -592,7 +592,8 @@
{
$fp_opt = array(
'ssl' => array(
'verify_peer' => false, // Opportunistic Encryption
'verify_peer' => false, // Opportunistic Encryption
'verify_peer_name' => false, // Opportunistic Encryption
)
);
$fp_ctx = stream_context_create($fp_opt);