Postie - Version 1.7.21

Version Description

(2015-10-27) = * Refix bug where "Ignore mail state" setting was being ignored

Download this release

Release Info

Developer WayneAllen
Plugin Icon 128x128 Postie
Version 1.7.21
Comparing to
See all releases

Code changes from version 1.7.20 to 1.7.21

Files changed (5) hide show
  1. docs/Changes.txt +3 -0
  2. docs/Postie.txt +1 -1
  3. postie-functions.php +4 -4
  4. postie.php +3 -3
  5. readme.txt +4 -1
docs/Changes.txt CHANGED
@@ -27,6 +27,9 @@ All script, style and body tags are stripped from html emails.
27
  Attachments are now processed in the order they were attached.
28
 
29
  == CHANGELOG ==
 
 
 
30
  = 1.7.20 (2015-10-26) =
31
  * Fixed bug where debug info was not being displayed according to settings
32
  * Fix bug where "Ignore mail state" setting was being ignored
27
  Attachments are now processed in the order they were attached.
28
 
29
  == CHANGELOG ==
30
+ = 1.7.21 (2015-10-27) =
31
+ * Refix bug where "Ignore mail state" setting was being ignored
32
+
33
  = 1.7.20 (2015-10-26) =
34
  * Fixed bug where debug info was not being displayed according to settings
35
  * Fix bug where "Ignore mail state" setting was being ignored
docs/Postie.txt CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://PostiePlugin.com/
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.3.1
9
- Stable tag: 1.7.20
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.3.1
9
+ Stable tag: 1.7.21
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
postie-functions.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- $Id: postie-functions.php 1273489 2015-10-26 21:44:36Z WayneAllen $
4
  */
5
 
6
  class PostiePostModifiers {
@@ -756,7 +756,7 @@ function ConfigurePostie() {
756
  * This function handles determining the protocol and fetching the mail
757
  * @return array
758
  */
759
- function FetchMail($server = NULL, $port = NULL, $email = NULL, $password = NULL, $protocol = NULL, $offset = NULL, $test = NULL, $deleteMessages = true, $maxemails = 0, $email_tls = false) {
760
  $emails = array();
761
  if (!$server || !$port || !$email) {
762
  EchoError("Missing Configuration For Mail Server");
@@ -781,7 +781,7 @@ function FetchMail($server = NULL, $port = NULL, $email = NULL, $password = NULL
781
  if (!HasIMAPSupport()) {
782
  EchoError("Sorry - you do not have IMAP php module installed - it is required for this mail setting.");
783
  } else {
784
- $emails = IMAPMessageFetch($server, $port, $email, $password, $protocol, $offset, $test, $deleteMessages, $maxemails, $email_tls);
785
  }
786
  break;
787
  case 'pop3':
@@ -3658,7 +3658,7 @@ function postie_get_mail() {
3658
  continue;
3659
  } else if ($email == 'already read') {
3660
  $message = __("Message is already marked 'read'.", 'postie');
3661
- EchoError("$message_number: $message");
3662
  continue;
3663
  }
3664
 
1
  <?php
2
  /*
3
+ $Id: postie-functions.php 1274225 2015-10-27 19:29:28Z WayneAllen $
4
  */
5
 
6
  class PostiePostModifiers {
756
  * This function handles determining the protocol and fetching the mail
757
  * @return array
758
  */
759
+ function FetchMail($server = NULL, $port = NULL, $email = NULL, $password = NULL, $protocol = NULL, $offset = NULL, $test = NULL, $deleteMessages = true, $maxemails = 0, $email_tls = false, $ignoreEmailState = true) {
760
  $emails = array();
761
  if (!$server || !$port || !$email) {
762
  EchoError("Missing Configuration For Mail Server");
781
  if (!HasIMAPSupport()) {
782
  EchoError("Sorry - you do not have IMAP php module installed - it is required for this mail setting.");
783
  } else {
784
+ $emails = IMAPMessageFetch($server, $port, $email, $password, $protocol, $offset, $test, $deleteMessages, $maxemails, $email_tls, $ignoreEmailState);
785
  }
786
  break;
787
  case 'pop3':
3658
  continue;
3659
  } else if ($email == 'already read') {
3660
  $message = __("Message is already marked 'read'.", 'postie');
3661
+ DebugEcho("$message_number: $message");
3662
  continue;
3663
  }
3664
 
postie.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Postie
5
  Plugin URI: http://PostiePlugin.com/
6
  Description: Create posts via email. Signifigantly upgrades the Post by Email features of Word Press.
7
- Version: 1.7.20
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
@@ -28,12 +28,12 @@
28
  */
29
 
30
  /*
31
- $Id: postie.php 1273489 2015-10-26 21:44:36Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib_autolink.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
35
 
36
- define('POSTIE_VERSION', '1.7.20');
37
  define("POSTIE_ROOT", dirname(__FILE__));
38
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
39
 
4
  Plugin Name: Postie
5
  Plugin URI: http://PostiePlugin.com/
6
  Description: Create posts via email. Signifigantly upgrades the Post by Email features of Word Press.
7
+ Version: 1.7.21
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
28
  */
29
 
30
  /*
31
+ $Id: postie.php 1274225 2015-10-27 19:29:28Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib_autolink.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
35
 
36
+ define('POSTIE_VERSION', '1.7.21');
37
  define("POSTIE_ROOT", dirname(__FILE__));
38
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
39
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://PostiePlugin.com/
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.3.1
9
- Stable tag: 1.7.20
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -235,6 +235,9 @@ All script, style and body tags are stripped from html emails.
235
  Attachments are now processed in the order they were attached.
236
 
237
  == CHANGELOG ==
 
 
 
238
  = 1.7.20 (2015-10-26) =
239
  * Fixed bug where debug info was not being displayed according to settings
240
  * Fix bug where "Ignore mail state" setting was being ignored
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.3.1
9
+ Stable tag: 1.7.21
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
235
  Attachments are now processed in the order they were attached.
236
 
237
  == CHANGELOG ==
238
+ = 1.7.21 (2015-10-27) =
239
+ * Refix bug where "Ignore mail state" setting was being ignored
240
+
241
  = 1.7.20 (2015-10-26) =
242
  * Fixed bug where debug info was not being displayed according to settings
243
  * Fix bug where "Ignore mail state" setting was being ignored