Emergency fix for https://bugs.cacert.org/view.php?id=1459
"e-mail verification fails for many addresses since upgrade from PHP 5.5 to PHP 5.6"
This commit is contained in:
parent
f6b81bfed9
commit
62a2d72a07
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue