Postie - Version 1.8.27

Version Description

(2017-01-26) = * Added postie_raw action

Download this release

Release Info

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

Code changes from version 1.8.26 to 1.8.27

Files changed (5) hide show
  1. docs/Changes.txt +3 -0
  2. docs/Postie.txt +1 -1
  3. postie-functions.php +3 -3
  4. postie.php +3 -3
  5. readme.txt +4 -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.26 (2017-01-24) =
39
  * Fix bug where WordPress timezone was not being taken into effect.
40
 
35
  Attachments are now processed in the order they were attached.
36
 
37
  == CHANGELOG ==
38
+ = 1.8.27 (2017-01-26) =
39
+ * Added postie_raw action
40
+
41
  = 1.8.26 (2017-01-24) =
42
  * Fix bug where WordPress timezone was not being taken into effect.
43
 
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.1
9
- Stable tag: 1.8.26
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.1
9
+ Stable tag: 1.8.27
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 1581554 2017-01-24 23:21:11Z WayneAllen $
4
  */
5
 
6
  class PostiePostModifiers {
@@ -787,6 +787,7 @@ function postie_getemails($type, $server, $port, $email, $password, $protocol, $
787
  if (IsDebugMode()) {
788
  $raw = $mailbox->fetchMessageSource($uid);
789
  postie_save_email_debug($raw, $email);
 
790
  }
791
  $emails[] = $email;
792
  if ($deleteMessages) {
@@ -3162,6 +3163,7 @@ function postie_get_mail() {
3162
  add_action('postie_log_debug', 'postie_log_debug');
3163
  }
3164
 
 
3165
  DebugEcho("Starting mail fetch");
3166
 
3167
  postie_environment();
@@ -3176,8 +3178,6 @@ function postie_get_mail() {
3176
  DebugEcho(__("memory at start of email processing: ", 'postie') . memory_get_usage());
3177
  }
3178
 
3179
- do_action('postie_session_start');
3180
-
3181
  if (has_filter('postie_post')) {
3182
  echo "Postie: filter 'postie_post' is depricated in favor of 'postie_post_before'";
3183
  }
1
  <?php
2
  /*
3
+ $Id: postie-functions.php 1582221 2017-01-25 22:53:20Z WayneAllen $
4
  */
5
 
6
  class PostiePostModifiers {
787
  if (IsDebugMode()) {
788
  $raw = $mailbox->fetchMessageSource($uid);
789
  postie_save_email_debug($raw, $email);
790
+ do_action('postie_raw', $raw);
791
  }
792
  $emails[] = $email;
793
  if ($deleteMessages) {
3163
  add_action('postie_log_debug', 'postie_log_debug');
3164
  }
3165
 
3166
+ do_action('postie_session_start');
3167
  DebugEcho("Starting mail fetch");
3168
 
3169
  postie_environment();
3178
  DebugEcho(__("memory at start of email processing: ", 'postie') . memory_get_usage());
3179
  }
3180
 
 
 
3181
  if (has_filter('postie_post')) {
3182
  echo "Postie: filter 'postie_post' is depricated in favor of 'postie_post_before'";
3183
  }
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.26
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
@@ -28,7 +28,7 @@
28
  */
29
 
30
  /*
31
- $Id: postie.php 1581559 2017-01-24 23:22:26Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fException.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fUnexpectedException.php");
@@ -49,7 +49,7 @@ require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/pPop3MailServer.php"
49
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib_autolink.php");
50
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
51
 
52
- define('POSTIE_VERSION', '1.8.26');
53
  define("POSTIE_ROOT", dirname(__FILE__));
54
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
55
 
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.27
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
28
  */
29
 
30
  /*
31
+ $Id: postie.php 1582794 2017-01-26 17:51:02Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fException.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fUnexpectedException.php");
49
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib_autolink.php");
50
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
51
 
52
+ define('POSTIE_VERSION', '1.8.27');
53
  define("POSTIE_ROOT", dirname(__FILE__));
54
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
55
 
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.1
9
- Stable tag: 1.8.26
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.26 (2017-01-24) =
246
  * Fix bug where WordPress timezone was not being taken into effect.
247
 
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.7.1
9
+ Stable tag: 1.8.27
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.27 (2017-01-26) =
246
+ * Added postie_raw action
247
+
248
  = 1.8.26 (2017-01-24) =
249
  * Fix bug where WordPress timezone was not being taken into effect.
250