Version Description
- 2018-04-24
- file added to svn - contactform7
Download this release
Release Info
Developer | yehudah |
Plugin | Post SMTP Mailer/Email Log |
Version | 1.8.7 |
Comparing to | |
See all releases |
Code changes from version 1.8.6 to 1.8.7
- postman-smtp.php +3 -4
- readme.txt +3 -1
postman-smtp.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Post SMTP
|
5 |
* Plugin URI: https://wordpress.org/plugins/post-smtp/
|
6 |
* 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!
|
7 |
-
* Version: 1.8.
|
8 |
* Author: Jason Hendriks, Yehuda Hassine
|
9 |
* Text Domain: post-smtp
|
10 |
* Author URI: https://postmansmtp.com
|
@@ -39,7 +39,7 @@ define( 'POST_BASE', __FILE__ );
|
|
39 |
define( 'POST_PATH', __DIR__ );
|
40 |
|
41 |
$postman_smtp_exist = in_array( 'postman-smtp/postman-smtp.php', (array) get_option( 'active_plugins', array() ) );
|
42 |
-
$required_php_version = version_compare(PHP_VERSION, '5.6.0', '<');
|
43 |
|
44 |
if ( $postman_smtp_exist || $required_php_version ) {
|
45 |
add_action( 'admin_init', 'post_smtp_plugin_deactivate' );
|
@@ -51,7 +51,6 @@ if ( $postman_smtp_exist || $required_php_version ) {
|
|
51 |
if ( $required_php_version ) {
|
52 |
add_action( 'admin_notices', 'post_smtp_plugin_admin_notice_version' );
|
53 |
}
|
54 |
-
|
55 |
} else {
|
56 |
post_start( memory_get_usage() );
|
57 |
}
|
@@ -124,5 +123,5 @@ function post_start( $startingMemory ) {
|
|
124 |
*/
|
125 |
function post_setupPostman() {
|
126 |
require_once 'Postman/Postman.php';
|
127 |
-
$kevinCostner = new Postman( __FILE__, '1.8.
|
128 |
}
|
4 |
* Plugin Name: Post SMTP
|
5 |
* Plugin URI: https://wordpress.org/plugins/post-smtp/
|
6 |
* 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!
|
7 |
+
* Version: 1.8.7
|
8 |
* Author: Jason Hendriks, Yehuda Hassine
|
9 |
* Text Domain: post-smtp
|
10 |
* Author URI: https://postmansmtp.com
|
39 |
define( 'POST_PATH', __DIR__ );
|
40 |
|
41 |
$postman_smtp_exist = in_array( 'postman-smtp/postman-smtp.php', (array) get_option( 'active_plugins', array() ) );
|
42 |
+
$required_php_version = version_compare( PHP_VERSION, '5.6.0', '<' );
|
43 |
|
44 |
if ( $postman_smtp_exist || $required_php_version ) {
|
45 |
add_action( 'admin_init', 'post_smtp_plugin_deactivate' );
|
51 |
if ( $required_php_version ) {
|
52 |
add_action( 'admin_notices', 'post_smtp_plugin_admin_notice_version' );
|
53 |
}
|
|
|
54 |
} else {
|
55 |
post_start( memory_get_usage() );
|
56 |
}
|
123 |
*/
|
124 |
function post_setupPostman() {
|
125 |
require_once 'Postman/Postman.php';
|
126 |
+
$kevinCostner = new Postman( __FILE__, '1.8.7' );
|
127 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=yehuda@m
|
|
4 |
Tags: postman smtp, postman, smtp, email, mail, mailer, email log, oauth2, gmail, google apps, hotmail, yahoo, mandrill api, sendgrid api, elastic email, office365, mailgun
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.9.5
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -296,6 +296,8 @@ To avoid being flagged as spam, you need to prove your email isn't forged. On a
|
|
296 |
|
297 |
|
298 |
== Changelog ==
|
|
|
|
|
299 |
|
300 |
= 1.8.6 - 2018-04-24
|
301 |
* Fix lockfile erros
|
4 |
Tags: postman smtp, postman, smtp, email, mail, mailer, email log, oauth2, gmail, google apps, hotmail, yahoo, mandrill api, sendgrid api, elastic email, office365, mailgun
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.9.5
|
7 |
+
Stable tag: 1.8.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
296 |
|
297 |
|
298 |
== Changelog ==
|
299 |
+
= 1.8.7 - 2018-04-24
|
300 |
+
* file added to svn - contactform7
|
301 |
|
302 |
= 1.8.6 - 2018-04-24
|
303 |
* Fix lockfile erros
|