作者 邓超

x

... ... @@ -1032,13 +1032,13 @@ class Imap {
$this->timeout = $timeout ? : 30;
// 是否验证证书
$isssl = in_array(parse_url($this->host)['host']??'1-1',['mail.laser-tech.com.cn']);
// $isssl = in_array(parse_url($this->host)['host']??'1-1',['mail.laser-tech.com.cn']);
// 链接服务器
$this->socket = stream_socket_client($this->host, $errno, $error, $this->timeout,STREAM_CLIENT_CONNECT,stream_context_create([
'ssl' => [
'verify_peer' => !$isssl, // 有的证书和域名不匹配,这里关闭认证
'verify_peer_name' => !$isssl,// 有的证书和域名不匹配,这里关闭认证
'verify_peer' => false, // 有的证书和域名不匹配,这里关闭认证
'verify_peer_name' => false,// 有的证书和域名不匹配,这里关闭认证
// 'capture_peer_cert' => true,
// 'capture_peer_cert_chain' => true,
// 'SNI_enabled' => true,
... ...