diff options
-rw-r--r-- | Postman/PostmanOptions.php | 3 | ||||
-rw-r--r-- | postman-smtp.php | 4 | ||||
-rw-r--r-- | readme.txt | 7 |
3 files changed, 7 insertions, 7 deletions
diff --git a/Postman/PostmanOptions.php b/Postman/PostmanOptions.php index d3bb79c..3357682 100644 --- a/Postman/PostmanOptions.php +++ b/Postman/PostmanOptions.php @@ -266,9 +266,6 @@ if ( ! class_exists( 'PostmanOptions' ) ) { public function getEncryptionType() { $port = $this->getPort(); switch ($port): - case 25: - return 'none'; - break; case 465: return 'ssl'; break; diff --git a/postman-smtp.php b/postman-smtp.php index c7ad3ff..43f4801 100644 --- a/postman-smtp.php +++ b/postman-smtp.php @@ -4,7 +4,7 @@ * Plugin Name: Post SMTP * Plugin URI: https://wordpress.org/plugins/post-smtp/ * Description: Email not reliable? Post SMTP is the first and only WordPress SMTP plugin to implement OAuth 2.0 for Gmail, Hotmail and Yahoo Mail. Setup is a breeze with the Configuration Wizard and integrated Port Tester. Enjoy worry-free delivery even if your password changes! - * Version: 1.9.2 + * Version: 1.9.3 * Author: Jason Hendriks, Yehuda Hassine * Text Domain: post-smtp * Author URI: https://postmansmtp.com @@ -123,5 +123,5 @@ function post_start( $startingMemory ) { */ function post_setupPostman() { require_once 'Postman/Postman.php'; - $kevinCostner = new Postman( __FILE__, '1.9.2' ); + $kevinCostner = new Postman( __FILE__, '1.9.3' ); } @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=yehuda@m Tags: postman smtp, postman, smtp, email, mail, mailer, email log, oauth2, gmail, google apps, hotmail, yahoo, mandrill api, sendgrid api, elastic email, office365, mailgun Requires at least: 3.9 Tested up to: 4.9.5 -Stable tag: 1.9.2 +Stable tag: 1.9.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -12,7 +12,7 @@ Send, log and troubleshoot your Outgoing Email easily. Supports everything: SMTP == Description == -= Version 1.9.1 released = += Version 1.9.3 released = Better secure delivery and external auth credentials (wp-config). [Read the detailes here](https://postmansmtp.com/post-smtp-1-9-0-better-support-for-secure-delivery/) = WordPress Mail SMTP Plugin = @@ -296,6 +296,9 @@ To avoid being flagged as spam, you need to prove your email isn't forged. On a == Changelog == += 1.9.3 - 2018-07-26 +Removed auto configure for port 25 (can be TLS) + = 1.9.2 - 2018-07-23 Removed deprecated functions from 7.2 + comment unready feature |