网站首页 / 资讯 / Magento文档/ Magento1.x文档

M1状态在当前服务器配置下发送邮件异常 报'Unable to connect via TLS'错误

作者:admin

每天遇到一个奇特的问题:


报错内容为

2021-10-28T08:00:02+00:00 ERR (3):
exception 'Zend_Mail_Protocol_Exception' with message 'Unable to connect via TLS' in /home/public_html/lib/Zend/Mail/Protocol/Smtp.php:211
Stack trace:**

此原因多数是因为服务器SMTP连接时所使用的TLS版本较高,而M1上使用的1.0版本无法安全连接通信导致。

只需要做如下操作修复此问题

 复制文件从

lib/Zend/Mail/Protocol/Smtp.php

app/code/local/Zend/Mail/Protocol/Smtp.php

修改此文件内容第205行从

   if (!stream_socket_enable_crypto($this->_socket, true,  STREAM_CRYPTO_METHOD_TLS_CLIENT)) {
                /**
                 * @see Zend_Mail_Protocol_Exception
                 */
                #require_once 'Zend/Mail/Protocol/Exception.php';
                throw new Zend_Mail_Protocol_Exception('Unable to connect via TLS');
            }

   if (!stream_socket_enable_crypto($this->_socket, true,  STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT)) {
                /**
                 * @see Zend_Mail_Protocol_Exception
                 */
                #require_once 'Zend/Mail/Protocol/Exception.php';
                throw new Zend_Mail_Protocol_Exception('Unable to connect via TLS');
            }


标签: Unable to connect via TLS magento邮件发送时好时坏
上一篇:Magento1.x 去FLASH上传扩展HTML5 Uploader
下一篇:没有了

相关内容

最近更新
相关产品
综合服务邮箱: magento2#foxmail.com