Skip to content

Commit

Permalink
fixed wrong ssl connection
Browse files Browse the repository at this point in the history
  • Loading branch information
arny committed Apr 23, 2021
1 parent dfc7698 commit 0e0bdb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/CorreosConnector/CorreosConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ public function __construct(string $login,string $password, string $clientCode,
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
'allow_self_signed' => true,
'ciphers' => 'DEFAULT:!DH',
]
]),
];
Expand Down

0 comments on commit 0e0bdb7

Please sign in to comment.