diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2018-04-24 03:24:16 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2018-04-24 03:24:16 +0000 |
commit | 90285276ef6dd2e217e216cb12b4b3390a943d7d (patch) | |
tree | 9931be6cb89313d3310e1a9fc7c2fe4591e57d6a | |
parent | ecfab3b1bb489542c68991aca482f9b6e52ff036 (diff) | |
download | Post-SMTP-90285276ef6dd2e217e216cb12b4b3390a943d7d.zip |
didn't noice contact form 7 file was not added to svn
git-svn-id: https://plugins.svn.wordpress.org/post-smtp/trunk@1863344 b8457f37-d9ea-0310-8a92-e5e31aec5664
-rw-r--r-- | postman-smtp.php | 7 | ||||
-rw-r--r-- | readme.txt | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/postman-smtp.php b/postman-smtp.php index dba2fe8..c444cdf 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.8.6 + * Version: 1.8.7 * Author: Jason Hendriks, Yehuda Hassine * Text Domain: post-smtp * Author URI: https://postmansmtp.com @@ -39,7 +39,7 @@ define( 'POST_BASE', __FILE__ ); define( 'POST_PATH', __DIR__ ); $postman_smtp_exist = in_array( 'postman-smtp/postman-smtp.php', (array) get_option( 'active_plugins', array() ) ); -$required_php_version = version_compare(PHP_VERSION, '5.6.0', '<'); +$required_php_version = version_compare( PHP_VERSION, '5.6.0', '<' ); if ( $postman_smtp_exist || $required_php_version ) { add_action( 'admin_init', 'post_smtp_plugin_deactivate' ); @@ -51,7 +51,6 @@ if ( $postman_smtp_exist || $required_php_version ) { if ( $required_php_version ) { add_action( 'admin_notices', 'post_smtp_plugin_admin_notice_version' ); } - } else { post_start( memory_get_usage() ); } @@ -124,5 +123,5 @@ function post_start( $startingMemory ) { */ function post_setupPostman() { require_once 'Postman/Postman.php'; - $kevinCostner = new Postman( __FILE__, '1.8.6' ); + $kevinCostner = new Postman( __FILE__, '1.8.7' ); } @@ -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.8.6 +Stable tag: 1.8.7 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -296,6 +296,8 @@ To avoid being flagged as spam, you need to prove your email isn't forged. On a == Changelog == += 1.8.7 - 2018-04-24 +* file added to svn - contactform7 = 1.8.6 - 2018-04-24 * Fix lockfile erros |