91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

laravel5發送ssl郵箱問題

發布時間:2020-06-25 12:20:25 來源:網絡 閱讀:971 作者:ttlxihuan 欄目:web開發

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官方文檔:http://php.net/manual/zh/context.ssl.php


laravel5發送ssl郵箱問題

其中需要注意的是 verify_peer_name 要求驗證證書名默認值為true,這里是問題所以,當沒有指定證書時該值會影響連接驗證失敗導致整個連接失敗。因此需要修改代碼并把 verify_peer_name 設置為 false。

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

但其增加了兩行代碼把 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 = array();
        if (!empty($this->_params['sourceIp'])) {
            $options['socket']['bindto'] = $this->_params['sourceIp'].':0';
        }
        
        //在這里增加代碼,修改默認值
        $options['ssl']['verify_peer_name'] = FALSE;
        
        $this->_stream = @stream_socket_client($host.':'.$this->_params['port'], $errno, $errstr, $timeout, STREAM_CLIENT_CONNECT, stream_context_create($options));
        if (false === $this->_stream) {
            throw new Swift_TransportException(
                'Connection could not be established with host '.$this->_params['host'].
                ' ['.$errstr.' #'.$errno.']'
                );
        }
        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;
    }

當然如果把 verify_peer 加上也沒有問題。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沧州市| 武平县| 抚州市| 泗洪县| 旬阳县| 永昌县| 赤水市| 阳春市| 邢台市| 大荔县| 特克斯县| 天镇县| 文安县| 桃江县| 宜宾县| 甘谷县| 仁寿县| 霍林郭勒市| 策勒县| 宁波市| 平果县| 肥乡县| 图们市| 桂林市| 嘉义市| 阿坝| 赣榆县| 邵东县| 沙洋县| 渝北区| 谷城县| 綦江县| 平邑县| 崇左市| 金溪县| 义乌市| 多伦县| 西和县| 改则县| 沐川县| 额济纳旗|