laravel 傳送郵件 使用ssl 報錯為:" stream_socket_client(): SSL :"

helong3314發表於2021-06-17

laravel5已經有很好的郵件傳送功能,但都是常規 tls 不加密協議,現在有的雲伺服器已經慢慢禁止使用不加密協議,要求使用ssl加密協議;如阿里雲新購買的伺服器都開始禁止。

由於laravel5預設使用的是 swiftmailer 擴充套件。傳送使用的是 stream 其中並未對ssl提供證照等內容配置,所以當使用ssl時又未指定證照時會錯:

Connection could not be established with host ***.com [ #0]

連線失敗,造成錯誤的地方:vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php 類

Swift_Transport_StreamBuffer 的 establishSocketConnection 方法在呼叫 stream_context_create 時缺少證照相關配置。

看看PHP官方文件:php.net/manual/zh/context.ssl.php

wKiom1nbHRLBV0JdAADsz4MC7Do148.png

其中需要注意的是 verify_peer_name 要求驗證證照名預設值為true,這裡是問題所以,當沒有指定證照時該值會影響連線驗證失敗導致整個連線失敗。因此需要修改程式碼並把 verify_peer_name 和 verify_peer 設定為 false。

這個問題在 github.com/swiftmailer/swiftmailer... 中已經有說明。

但其增加了兩行程式碼把 verify_peer 和 verify_peer_name 都設定為false 。依文件中看,verify_peer 預設值已經是 false ,所以可以不加。

/**
 * Establishes a connection to a remote server. */private function establishSocketConnection()
{
  $host = $this->params['host'];
 if (!empty($this->params['protocol'])) {
  $host = $this->params['protocol'].'://'.$host;
  }
  $timeout = 15;
 if (!empty($this->params['timeout'])) {
  $timeout = $this->params['timeout'];
  }
  $options = [];

 if (!empty($this->params['sourceIp'])) {
  $options['socket']['bindto'] = $this->params['sourceIp'].':0';
  }

  if (isset($this->params['stream_context_options'])) {
  $options = array_merge($options, $this->params['stream_context_options']);
  }
 //在這裡增加程式碼,修改預設值
 $options [ 'ssl' ][ 'verify_peer' ] = false;
 $options [ 'ssl' ][ 'verify_peer_name' ] = false;
  $streamContext = stream_context_create($options);

  set_error_handler(function ($type, $msg) {
  throw new Swift_TransportException('Connection could not be established with host '.$this->params['host'].' :'.$msg);
  });
 try {
  $this->stream = stream_socket_client($host.':'.$this->params['port'], $errno, $errstr, $timeout, STREAM_CLIENT_CONNECT, $streamContext);
  } finally {
 restore_error_handler();
  }

  if (!empty($this->params['blocking'])) {
 stream_set_blocking($this->stream, 1);
  } else {
 stream_set_blocking($this->stream, 0);
  }
 stream_set_timeout($this->stream, $timeout);
  $this->in = &$this->stream;
  $this->out = &$this->stream;
}
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章