summaryrefslogtreecommitdiff
path: root/postman-smtp.php
diff options
context:
space:
mode:
authoryehuda <yehuda@myinbox.in>2019-05-16 12:12:33 +0300
committeryehuda <yehuda@myinbox.in>2019-05-16 12:12:33 +0300
commit09ad01149ef5981407149bc3c9502058482fb419 (patch)
tree3ac2513ad5cb08650b03f55d837cf6b1d578dd21 /postman-smtp.php
parent9e2de08e9df8ce719fa04da2405d64f633d94b0e (diff)
downloadPost-SMTP-09ad01149ef5981407149bc3c9502058482fb419.zip
Fix default method
The default method was trying to use SMTP, I think it's wrong and i'm changing it to default Sendmail
Diffstat (limited to 'postman-smtp.php')
-rw-r--r--postman-smtp.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/postman-smtp.php b/postman-smtp.php
index 6521fab..2413bbd 100644
--- a/postman-smtp.php
+++ b/postman-smtp.php
@@ -3,7 +3,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: 2.0
+ * Version: 2.0.1
* Author: Yehuda Hassine
* Text Domain: post-smtp
* Author URI: https://postmansmtp.com
@@ -41,7 +41,7 @@
define( 'POST_BASE', __FILE__ );
define( 'POST_PATH', __DIR__ );
define( 'POST_URL', plugins_url('', POST_BASE ) );
-define( 'POST_SMTP_VER', '2.0' );
+define( 'POST_SMTP_VER', '2.0.1' );
$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', '<' );