summaryrefslogtreecommitdiff
path: root/Postman/Postman-Mail
diff options
context:
space:
mode:
authoryehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664>2017-11-08 19:37:00 +0000
committeryehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664>2017-11-08 19:37:00 +0000
commit54b5bf41553746d9a6a9cc3de0c61c654fda8153 (patch)
treefd768905cccab638e1e73d633c1aa97937fc75cb /Postman/Postman-Mail
parent6dc8161c3b9ae6039cb3ca9d98ad42b9bdb7d6ee (diff)
downloadPost-SMTP-54b5bf41553746d9a6a9cc3de0c61c654fda8153.zip
* Fix: Self sign certificate
* Add: guides section
Diffstat (limited to 'Postman/Postman-Mail')
-rw-r--r--Postman/Postman-Mail/Zend-1.12.10/Mail/Protocol/Smtp.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Postman/Postman-Mail/Zend-1.12.10/Mail/Protocol/Smtp.php b/Postman/Postman-Mail/Zend-1.12.10/Mail/Protocol/Smtp.php
index e2dade8..a6ebbd5 100644
--- a/Postman/Postman-Mail/Zend-1.12.10/Mail/Protocol/Smtp.php
+++ b/Postman/Postman-Mail/Zend-1.12.10/Mail/Protocol/Smtp.php
@@ -204,7 +204,7 @@ class Postman_Zend_Mail_Protocol_Smtp extends Postman_Zend_Mail_Protocol_Abstrac
$this->_send('STARTTLS');
$this->_expect(220, 180);
- stream_context_set_option($this->_socket, 'ssl', 'verify_peer', true);
+ stream_context_set_option($this->_socket, 'ssl', 'verify_peer', false);
//stream_context_set_option($this->_socket, 'ssl', 'verify_peer_name', false);
stream_context_set_option($this->_socket, 'ssl', 'allow_self_signed', true);