Version Description
Download this release
Release Info
Developer | wpexpertsio |
Plugin | Post SMTP Mailer/Email Log |
Version | 2.1.4-rc.1 |
Comparing to | |
See all releases |
Code changes from version 2.1.4-beta.1 to 2.1.4-rc.1
Postman/Postman-Configuration/PostmanRegisterConfigurationSettings.php
CHANGED
@@ -414,7 +414,13 @@ class PostmanSettingsRegistry {
|
|
414 |
|
415 |
public function temporaryDirectoryCallback() {
|
416 |
$inputDescription = __( 'Lockfiles are written here to prevent users from triggering an OAuth 2.0 token refresh at the same time.' );
|
417 |
-
printf(
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
if ( PostmanState::getInstance()->isFileLockingEnabled() ) {
|
419 |
printf( ' <span style="color:green">%s</span></br><span class="postman_input_description">%s</span>', __( 'Valid', 'post-smtp' ), $inputDescription );
|
420 |
} else {
|
414 |
|
415 |
public function temporaryDirectoryCallback() {
|
416 |
$inputDescription = __( 'Lockfiles are written here to prevent users from triggering an OAuth 2.0 token refresh at the same time.' );
|
417 |
+
printf(
|
418 |
+
'<input type="text" id="input_%2$s" name="%1$s[%2$s]" value="%3$s" />',
|
419 |
+
PostmanOptions::POSTMAN_OPTIONS,
|
420 |
+
PostmanOptions::TEMPORARY_DIRECTORY,
|
421 |
+
esc_attr( $this->options->getTempDirectory() )
|
422 |
+
);
|
423 |
+
|
424 |
if ( PostmanState::getInstance()->isFileLockingEnabled() ) {
|
425 |
printf( ' <span style="color:green">%s</span></br><span class="postman_input_description">%s</span>', __( 'Valid', 'post-smtp' ), $inputDescription );
|
426 |
} else {
|
postman-smtp.php
CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
6 |
* Plugin Name: Post SMTP
|
7 |
* Plugin URI: https://wordpress.org/plugins/post-smtp/
|
8 |
* 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!
|
9 |
-
* Version: 2.1.
|
10 |
* Author: Post SMTP
|
11 |
* Text Domain: post-smtp
|
12 |
* Author URI: https://postmansmtp.com
|
@@ -74,7 +74,7 @@ if ( ! function_exists( 'ps_fs' ) ) {
|
|
74 |
define( 'POST_SMTP_BASE', __FILE__ );
|
75 |
define( 'POST_SMTP_PATH', __DIR__ );
|
76 |
define( 'POST_SMTP_URL', plugins_url('', POST_SMTP_BASE ) );
|
77 |
-
define( 'POST_SMTP_VER', '2.1.
|
78 |
define( 'POST_SMTP_ASSETS', plugin_dir_url( __FILE__ ) . 'assets/' );
|
79 |
|
80 |
$postman_smtp_exist = in_array( 'postman-smtp/postman-smtp.php', (array) get_option( 'active_plugins', array() ) );
|
6 |
* Plugin Name: Post SMTP
|
7 |
* Plugin URI: https://wordpress.org/plugins/post-smtp/
|
8 |
* 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!
|
9 |
+
* Version: 2.1.4-rc.1
|
10 |
* Author: Post SMTP
|
11 |
* Text Domain: post-smtp
|
12 |
* Author URI: https://postmansmtp.com
|
74 |
define( 'POST_SMTP_BASE', __FILE__ );
|
75 |
define( 'POST_SMTP_PATH', __DIR__ );
|
76 |
define( 'POST_SMTP_URL', plugins_url('', POST_SMTP_BASE ) );
|
77 |
+
define( 'POST_SMTP_VER', '2.1.4' );
|
78 |
define( 'POST_SMTP_ASSETS', plugin_dir_url( __FILE__ ) . 'assets/' );
|
79 |
|
80 |
$postman_smtp_exist = in_array( 'postman-smtp/postman-smtp.php', (array) get_option( 'active_plugins', array() ) );
|