summaryrefslogtreecommitdiff
path: root/Postman/PostmanOptions.php
diff options
context:
space:
mode:
authoryehuda <yehuda@myinbox.in>2018-07-26 17:52:40 +0300
committeryehuda <yehuda@myinbox.in>2018-07-26 17:52:40 +0300
commitf19076d5f2c4874718a6d70e4f013ab9dbd0aa79 (patch)
treee8a7b73a18ab589e3a4ae3366581407912ba3c2c /Postman/PostmanOptions.php
parent19000f27b901ed787e2130239ad2bc97b8cca7ac (diff)
downloadPost-SMTP-f19076d5f2c4874718a6d70e4f013ab9dbd0aa79.zip
Removed auto configure for port 25 (can be TLS)
Diffstat (limited to 'Postman/PostmanOptions.php')
-rw-r--r--Postman/PostmanOptions.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/Postman/PostmanOptions.php b/Postman/PostmanOptions.php
index 110014e..f0d675e 100644
--- a/Postman/PostmanOptions.php
+++ b/Postman/PostmanOptions.php
@@ -262,9 +262,6 @@ if ( ! class_exists( 'PostmanOptions' ) ) {
public function getEncryptionType() {
$port = $this->getPort();
switch ($port):
- case 25:
- return 'none';
- break;
case 465:
return 'ssl';
break;