diff options
author | yehuda <yehuda@myinbox.in> | 2018-07-26 17:52:40 +0300 |
---|---|---|
committer | yehuda <yehuda@myinbox.in> | 2018-07-26 17:52:40 +0300 |
commit | f19076d5f2c4874718a6d70e4f013ab9dbd0aa79 (patch) | |
tree | e8a7b73a18ab589e3a4ae3366581407912ba3c2c /Postman/PostmanOptions.php | |
parent | 19000f27b901ed787e2130239ad2bc97b8cca7ac (diff) | |
download | Post-SMTP-f19076d5f2c4874718a6d70e4f013ab9dbd0aa79.zip |
Removed auto configure for port 25 (can be TLS)
Diffstat (limited to 'Postman/PostmanOptions.php')
-rw-r--r-- | Postman/PostmanOptions.php | 3 |
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; |