diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2020-05-18 19:57:18 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2020-05-18 19:57:18 +0000 |
commit | 249e1eed396e90c702cdbdee14ce2355601fd4ad (patch) | |
tree | c46a3dae1c232e9622502c70d030ee628f04dead | |
parent | c2335f6f0e86b17ec7346580e352b3e5d77ebf9e (diff) | |
download | Post-SMTP-249e1eed396e90c702cdbdee14ce2355601fd4ad.zip |
Update readme file info
-rw-r--r-- | Postman/Extensions/Admin/PostmanAdminView.php | 2 | ||||
-rw-r--r-- | Postman/Postman-Email-Log/PostmanEmailLogController.php | 1 | ||||
-rw-r--r-- | Postman/PostmanViewController.php | 3 | ||||
-rw-r--r-- | postman-smtp.php | 13 | ||||
-rw-r--r-- | readme.txt | 17 |
5 files changed, 12 insertions, 24 deletions
diff --git a/Postman/Extensions/Admin/PostmanAdminView.php b/Postman/Extensions/Admin/PostmanAdminView.php index c9f0509..af66fcb 100644 --- a/Postman/Extensions/Admin/PostmanAdminView.php +++ b/Postman/Extensions/Admin/PostmanAdminView.php @@ -3,6 +3,8 @@ <style> .form-table .row { display: flex; + justify-content: space-between; + margin-bottom: 15px; } .form-table .row .flex > *:not(:last-child) { diff --git a/Postman/Postman-Email-Log/PostmanEmailLogController.php b/Postman/Postman-Email-Log/PostmanEmailLogController.php index c496455..dd8f650 100644 --- a/Postman/Postman-Email-Log/PostmanEmailLogController.php +++ b/Postman/Postman-Email-Log/PostmanEmailLogController.php @@ -360,6 +360,7 @@ class PostmanEmailLogController { ) ); } } + function postman_email_log_enqueue_resources() { $pluginData = apply_filters( 'postman_get_plugin_metadata', null ); wp_register_style( 'postman_email_log', plugins_url( 'style/postman-email-log.css', $this->rootPluginFilenameAndPath ), null, $pluginData ['version'] ); diff --git a/Postman/PostmanViewController.php b/Postman/PostmanViewController.php index dfd4207..02bef5e 100644 --- a/Postman/PostmanViewController.php +++ b/Postman/PostmanViewController.php @@ -379,7 +379,8 @@ if ( ! class_exists( 'PostmanViewController' ) ) { printf( '<li><a href="%s" class="welcome-icon run-port-test">%s</a></li>', $this->getPageUrl( PostmanDiagnosticTestController::DIAGNOSTICS_SLUG ), __( 'Diagnostic Test', 'post-smtp' ) ); printf( '<li><a href="%s" data-security="%s" class="welcome-icon release-lock-file">%s</a></li>', '#', wp_create_nonce( "postman" ), __( 'Release Lock File Error', 'post-smtp' ) ); printf( '<li><a href="https://wordpress.org/support/plugin/post-smtp/" class="welcome-icon postman_support">%s</a></li>', __( 'Online Support', 'post-smtp' ) ); - printf( '<li><img class="align-middle" src="' . plugins_url( 'style/images/new.gif', dirname( __DIR__ ) . '/postman-smtp.php' ) . '"><a target="blank" class="align-middle" href="https://postmansmtp.com/category/guides/" class="welcome-icon postman_guides">%s</a></li>', __( 'Guides', 'post-smtp' ) ); + printf( '<li><a target="blank" class="align-middle" href="https://postmansmtp.com/category/guides/" class="welcome-icon postman_guides">%s</a></li>', __( 'Guides', 'post-smtp' ) ); + printf( '<li><img class="align-middle" src="' . plugins_url( 'style/images/new.gif', dirname( __DIR__ ) . '/postman-smtp.php' ) . '"><a target="blank" class="align-middle" href="https://www.facebook.com/groups/post.smtp" class="welcome-icon postman_guides">%s</a></li>', __( 'Facebook Group', 'post-smtp' ) ); print '</ul></div></div></div></div>'; ?> </div> diff --git a/postman-smtp.php b/postman-smtp.php index 18dae89..7502746 100644 --- a/postman-smtp.php +++ b/postman-smtp.php @@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) { * 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.11 + * Version: 2.0.12 * Author: Yehuda Hassine * Text Domain: post-smtp * Author URI: https://postmansmtp.com @@ -26,15 +26,6 @@ if ( ! defined( 'ABSPATH' ) ) { // filter print_postman_status: apply this filter to print the human-readable plugin state // filter postman_module: implement this filter and return the instance of the module // filter postman_register_modules: apply this filter to register the module -// TODO v1.7 -// -- Postmark API http://plugins.svn.wordpress.org/postmark-approved-wordpress-plugin/trunk/postmark.php -// -- Amazon SES API http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-api.html -// TODO v2.0 -// -- PHP7 compatibility -// -- class autoloading -// -- Add dismiss option for "unconfigured message" .. for multisites -// -- customize sent-mail icon WordPress dashboard -// -- multiple mailbox support /** @@ -44,7 +35,7 @@ if ( ! defined( 'ABSPATH' ) ) { define( 'POST_SMTP_BASE', __FILE__ ); define( 'POST_SMTP_PATH', __DIR__ ); define( 'POST_SMTP_URL', plugins_url('', POST_SMTP_BASE ) ); -define( 'POST_SMTP_VER', '2.0.11' ); +define( 'POST_SMTP_VER', '2.0.12' ); define( 'POST_SMTP_SHOW_RELEASE_MESSAGE', true ); define( 'POST_SMTP_RELEASE_MESSAGE', "I have released a new Google Analytics AIO plugin, if you liked it please leave a review." ); define( 'POST_SMTP_RELEASE_URL', 'https://wordpress.org/plugins/metrics-query/' ); @@ -3,8 +3,8 @@ Contributors: yehudah Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=yehuda@myinbox.in&item_name=Donation+for+PostSMTP 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: 5.3.2 -Stable tag: 2.0.11 +Tested up to: 5.4.1 +Stable tag: 2.0.12 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -139,9 +139,6 @@ Post SMTP (aka Postman SMTP) plugin was originally created by Jason Hendriks. 1. Choose the 'Request OAuth2 Permission' link and follow the instructions. 1. Send yourself a test email. -> Post is developed on OS X with PHP 5.5.14 and Apache 2.4.9. Post is tested in a [Red Hat OpenShift](http://www.openshift.com/) environment with PHP 5.3.3 and Apache 2.2.15 with Gmail, Hotmail and Yahoo Mail (US). Post is tested with [mailtrap.io](http://mailtrap.io). - - == Frequently Asked Questions == @@ -149,10 +146,6 @@ Post SMTP (aka Postman SMTP) plugin was originally created by Jason Hendriks. From 2015-11-08 more or less I can say that Jason the original author stoped maintain the plugin. He may still answered some support tickets, but nothing more. -You can read more about the "story" here: -https://postmansmtp.com/#story - - = What is OAuth 2.0? = A modern replacement for traditional password-based authentication. Post supports the OAuth 2.0 implementations of all three major e-mail providers: Gmail, Hotmail and Yahoo Mail. @@ -205,7 +198,6 @@ Go to [Configure Post SMTP with Gmail\Gsuite OAuth](https://postmansmtp.com/how- * If you have a Yahoo Account, from the [Yahoo Developer Network My Apps](https://developer.yahoo.com/apps/), select the Application and choose Delete App. - == Grant OAuth permission error messages == Please note that the Client ID and Client Secret fields are NOT for your username and password. They are for OAuth Credentials only. @@ -269,8 +261,6 @@ To avoid being flagged as spam, you need to prove your email isn't forged. On a * If you use a custom domain name for email, add a DKIM record to your DNS zone file and upload your Domain Key (a digital signature) to, for example [Google]((https://support.google.com/a/answer/174124?hl=en)) - - == Screenshots == 1. WordPress Dashboard showing both the Post widget and At a Glance widget @@ -291,6 +281,9 @@ To avoid being flagged as spam, you need to prove your email isn't forged. On a == Changelog == += 2.0.12 - 2020-05-18 +* Updated: Readme file info + = 2.0.11 - 2020-02-25 * Fixed: Slack notifications |