diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2018-07-26 14:54:30 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2018-07-26 14:54:30 +0000 |
commit | f35c4d853e85952a21a019914cb46e8acf50e826 (patch) | |
tree | e8a7b73a18ab589e3a4ae3366581407912ba3c2c /Postman | |
parent | 677010bdab6f3a935edb87e5723ee2f5ac20fcf8 (diff) | |
download | Post-SMTP-f35c4d853e85952a21a019914cb46e8acf50e826.zip |
Removed auto configure for port 25 (can be TLS)
Diffstat (limited to 'Postman')
-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; |