Postie - Version 1.8.34

Version Description

(2017-03-15) = * Fix bug when sending reject email

Download this release

Release Info

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

Code changes from version 1.8.33 to 1.8.34

Files changed (5) hide show
  1. docs/Changes.txt +3 -0
  2. docs/Postie.txt +1 -1
  3. postie-functions.php +2 -1
  4. postie.php +3 -3
  5. readme.txt +5 -1
docs/Changes.txt CHANGED
@@ -35,6 +35,9 @@ All script, style and body tags are stripped from html emails.
35
  Attachments are now processed in the order they were attached.
36
 
37
  == CHANGELOG ==
 
 
 
38
  = 1.8.33 (2017-03-13) =
39
  * New setting "Remove matched categories" allows category specifiers to remain in post title.
40
  * New filter postie_cleanhtml to determine if Postie should clean up the html or if some other AddOn will do it.
35
  Attachments are now processed in the order they were attached.
36
 
37
  == CHANGELOG ==
38
+ = 1.8.34 (2017-03-15) =
39
+ * Fix bug when sending reject email
40
+
41
  = 1.8.33 (2017-03-13) =
42
  * New setting "Remove matched categories" allows category specifiers to remain in post title.
43
  * New filter postie_cleanhtml to determine if Postie should clean up the html or if some other AddOn will do it.
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.7.3
9
- Stable tag: 1.8.33
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.7.3
9
+ Stable tag: 1.8.34
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 1613697 2017-03-13 23:03:26Z WayneAllen $
4
  */
5
 
6
  class PostiePostModifiers {
@@ -1575,6 +1575,7 @@ function postie_header_encode($value) {
1575
  }
1576
 
1577
  function postie_email_reject($email, $recipients, $returnToSender) {
 
1578
  DebugEcho("postie_email_reject: start");
1579
 
1580
  if (count($recipients) == 0) {
1
  <?php
2
  /*
3
+ $Id: postie-functions.php 1615079 2017-03-15 15:20:35Z WayneAllen $
4
  */
5
 
6
  class PostiePostModifiers {
1575
  }
1576
 
1577
  function postie_email_reject($email, $recipients, $returnToSender) {
1578
+ require_once(ABSPATH . 'wp-admin/includes/file.php'); //wp_tempnam()
1579
  DebugEcho("postie_email_reject: start");
1580
 
1581
  if (count($recipients) == 0) {
postie.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Postie
5
  Plugin URI: http://PostiePlugin.com/
6
  Description: Create posts via email. Significantly upgrades the Post by Email features of WordPress.
7
- Version: 1.8.33
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
@@ -28,7 +28,7 @@
28
  */
29
 
30
  /*
31
- $Id: postie.php 1613697 2017-03-13 23:03:26Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fException.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fUnexpectedException.php");
@@ -50,7 +50,7 @@ require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib_autolink.php");
50
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
51
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-api.php");
52
 
53
- define('POSTIE_VERSION', '1.8.33');
54
  define("POSTIE_ROOT", dirname(__FILE__));
55
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
56
 
4
  Plugin Name: Postie
5
  Plugin URI: http://PostiePlugin.com/
6
  Description: Create posts via email. Significantly upgrades the Post by Email features of WordPress.
7
+ Version: 1.8.34
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
28
  */
29
 
30
  /*
31
+ $Id: postie.php 1615079 2017-03-15 15:20:35Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fException.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fUnexpectedException.php");
50
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
51
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-api.php");
52
 
53
+ define('POSTIE_VERSION', '1.8.34');
54
  define("POSTIE_ROOT", dirname(__FILE__));
55
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
56
 
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.7.3
9
- Stable tag: 1.8.33
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -242,6 +242,9 @@ All script, style and body tags are stripped from html emails.
242
  Attachments are now processed in the order they were attached.
243
 
244
  == CHANGELOG ==
 
 
 
245
  = 1.8.33 (2017-03-13) =
246
  * New setting "Remove matched categories" allows category specifiers to remain in post title.
247
  * New filter postie_cleanhtml to determine if Postie should clean up the html or if some other AddOn will do it.
@@ -1485,3 +1488,4 @@ plugin. And the rest is history :)
1485
  *
1486
  = 0.1 - 2004-06 =
1487
  * First release
 
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.7.3
9
+ Stable tag: 1.8.34
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
242
  Attachments are now processed in the order they were attached.
243
 
244
  == CHANGELOG ==
245
+ = 1.8.34 (2017-03-15) =
246
+ * Fix bug when sending reject email
247
+
248
  = 1.8.33 (2017-03-13) =
249
  * New setting "Remove matched categories" allows category specifiers to remain in post title.
250
  * New filter postie_cleanhtml to determine if Postie should clean up the html or if some other AddOn will do it.
1488
  *
1489
  = 0.1 - 2004-06 =
1490
  * First release
1491
+