Version Description
(2022-04-13) * Add translatable strings to email notification
Download this release
Release Info
Developer | WayneAllen |
Plugin | Postie |
Version | 1.9.60 |
Comparing to | |
See all releases |
Code changes from version 1.9.59 to 1.9.60
- docs/Changes.txt +3 -0
- docs/Postie.txt +2 -2
- postie-message.php +3 -2
- postie.php +2 -2
- readme.txt +1570 -1567
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.9.59 (2022-01-02)
|
39 |
* fix surrounding div with postie-post class name for plain text messages
|
40 |
|
35 |
Attachments are now processed in the order they were attached.
|
36 |
|
37 |
== CHANGELOG ==
|
38 |
+
= 1.9.60 (2022-04-13)
|
39 |
+
* Add translatable strings to email notification
|
40 |
+
|
41 |
= 1.9.59 (2022-01-02)
|
42 |
* fix surrounding div with postie-post class name for plain text messages
|
43 |
|
docs/Postie.txt
CHANGED
@@ -6,8 +6,8 @@ Plugin URI: http://PostiePlugin.com/
|
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires PHP: 5.3
|
8 |
Requires at least: 4.0
|
9 |
-
Tested up to: 5.
|
10 |
-
Stable tag: 1.9.
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires PHP: 5.3
|
8 |
Requires at least: 4.0
|
9 |
+
Tested up to: 5.9
|
10 |
+
Stable tag: 1.9.60
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
postie-message.php
CHANGED
@@ -735,7 +735,8 @@ class PostieMessage {
|
|
735 |
|
736 |
$post_status = get_post_status($postid);
|
737 |
|
738 |
-
$mailtext = "Your email '
|
|
|
739 |
|
740 |
$recipients = apply_filters('postie_email_notify_recipients', $recipients, $this->email, $postid);
|
741 |
if (count($recipients) == 0) {
|
@@ -745,7 +746,7 @@ class PostieMessage {
|
|
745 |
DebugEcho("email_notify: post postie_email_notify_recipients");
|
746 |
DebugDump($recipients);
|
747 |
}
|
748 |
-
$subject =
|
749 |
$subject = apply_filters('postie_email_notify_subject', $subject, $this->email, $postid);
|
750 |
DebugEcho("email_notify: post postie_email_notify_subject: $subject");
|
751 |
|
735 |
|
736 |
$post_status = get_post_status($postid);
|
737 |
|
738 |
+
$mailtext = sprintf(__("Your email '%s' has been successfully imported into %s %s with the current status of '%s'.\n", 'postie'),
|
739 |
+
$subject, $blogname, $posturl, $post_status);
|
740 |
|
741 |
$recipients = apply_filters('postie_email_notify_recipients', $recipients, $this->email, $postid);
|
742 |
if (count($recipients) == 0) {
|
746 |
DebugEcho("email_notify: post postie_email_notify_recipients");
|
747 |
DebugDump($recipients);
|
748 |
}
|
749 |
+
$subject = sprintf(__('Email imported to %s (%s)', 'postie'), $blogname, $post_status);
|
750 |
$subject = apply_filters('postie_email_notify_subject', $subject, $this->email, $postid);
|
751 |
DebugEcho("email_notify: post postie_email_notify_subject: $subject");
|
752 |
|
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.9.
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL3
|
@@ -28,7 +28,7 @@
|
|
28 |
*/
|
29 |
|
30 |
/*
|
31 |
-
$Id: postie.php
|
32 |
*/
|
33 |
|
34 |
if (!defined('WPINC')) {
|
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.9.60
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL3
|
28 |
*/
|
29 |
|
30 |
/*
|
31 |
+
$Id: postie.php 2709506 2022-04-14 03:37:38Z WayneAllen $
|
32 |
*/
|
33 |
|
34 |
if (!defined('WPINC')) {
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Tags: e-mail, email, post-by-email
|
|
7 |
Requires PHP: 5.3
|
8 |
Requires at least: 4.0
|
9 |
Tested up to: 5.9
|
10 |
-
Stable tag: 1.9.
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
@@ -56,1570 +56,1573 @@ More info at http://PostiePlugin.com/
|
|
56 |
7. Video and Audio options
|
57 |
8. Attachment options
|
58 |
|
59 |
-
== Installation ==
|
60 |
-
* Install Postie either via the WordPress.org plugin directory, or by uploading the files to your server.
|
61 |
-
* Activate Postie through the Plugins menu in WordPress.
|
62 |
-
* Configure the plugin by going to the Postie menu that appears in your admin menu.
|
63 |
-
* Make sure you enter the mailserver information correctly, including the type of connection and the port number.
|
64 |
-
* More information can be found at <a href="http://postieplugin.com/">http://postieplugin.com/</a>
|
65 |
-
|
66 |
-
== Usage ==
|
67 |
-
|
68 |
-
Please visit our site at <a href="http://postieplugin.com/">http://postieplugin.com/</a>
|
69 |
-
|
70 |
-
== Frequently Asked Questions ==
|
71 |
-
|
72 |
-
Please visit our FAQ page at <a href="http://postieplugin.com/faq/">http://postieplugin.com/faq/</a>
|
73 |
-
== Upgrade Notice ==
|
74 |
-
|
75 |
-
= 1.8.23 =
|
76 |
-
Postie now respects the blog timezone, this may require you to change the "Postie Time Correction" setting.
|
77 |
-
|
78 |
-
= 1.8.0 =
|
79 |
-
The php-imap library has been replaced with logic based on Flourish fMailbox et al, there are some differences in the structure of the mail header array. This affects the
|
80 |
-
postie_filter_email3 and postie_post_before filters.
|
81 |
-
See http://flourishlib.com/docs/fMailbox
|
82 |
-
|
83 |
-
= 1.6.0 =
|
84 |
-
Remote cron jobs need to update the URL used to kick off a manual email check. The new URL is http://<mysite>/?postie=get-mail
|
85 |
-
Accessing http://<mysite>/wp-content/plugins/postie/get_mail.php will now receive a 403 error and a message stating what the new URL should be.
|
86 |
-
The Postie menu is now at the main level rather than a Settings submenu.
|
87 |
-
|
88 |
-
= 1.5.14 =
|
89 |
-
The postie_post filter has be deprecated in favor of postie_post_before.
|
90 |
-
|
91 |
-
= 1.5.3 =
|
92 |
-
Postie can now set the first image in an email to be the "Featured" image. There is a new setting "Use First Image as Featured Image" which is off by default.
|
93 |
-
Postie now supports Use Transport Layer Security (TLS)
|
94 |
-
|
95 |
-
= 1.5.0 =
|
96 |
-
New filter postie_filter_email. Used to map "from" to any other email. Allows custom user mapping.
|
97 |
-
|
98 |
-
= 1.4.41 =
|
99 |
-
Post format is now supported. You can specify any of the WordPress supported post formats using the Post type syntax.
|
100 |
-
Post status can now be specified using the status: tag.
|
101 |
-
Post status setting was renamed to Default Post Status and moved to the Message tab.
|
102 |
-
|
103 |
-
= 1.4.10 =
|
104 |
-
All script, style and body tags are stripped from html emails.
|
105 |
-
|
106 |
-
= 1.4.6 =
|
107 |
-
Attachments are now processed in the order they were attached.
|
108 |
-
|
109 |
-
== CHANGELOG ==
|
110 |
-
= 1.9.
|
111 |
-
*
|
112 |
-
|
113 |
-
= 1.9.
|
114 |
-
*
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
*
|
119 |
-
|
120 |
-
= 1.9.
|
121 |
-
*
|
122 |
-
|
123 |
-
|
124 |
-
*
|
125 |
-
|
126 |
-
|
127 |
-
*
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
* Add compatibility for WordPress 5.
|
133 |
-
|
134 |
-
= 1.9.
|
135 |
-
* Add
|
136 |
-
|
137 |
-
= 1.9.
|
138 |
-
*
|
139 |
-
|
140 |
-
= 1.9.
|
141 |
-
*
|
142 |
-
|
143 |
-
= 1.9.
|
144 |
-
*
|
145 |
-
|
146 |
-
= 1.9.
|
147 |
-
* Add more wp_insert_post failure logging
|
148 |
-
|
149 |
-
= 1.9.
|
150 |
-
* Add more wp_insert_post failure logging
|
151 |
-
|
152 |
-
= 1.9.
|
153 |
-
* Add wp_insert_post failure logging
|
154 |
-
|
155 |
-
= 1.9.
|
156 |
-
*
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
*
|
162 |
-
|
163 |
-
= 1.9.
|
164 |
-
*
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
*
|
169 |
-
|
170 |
-
= 1.9.
|
171 |
-
*
|
172 |
-
|
173 |
-
= 1.9.
|
174 |
-
* Fix:
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
*
|
179 |
-
|
180 |
-
= 1.9.
|
181 |
-
*
|
182 |
-
|
183 |
-
|
184 |
-
*
|
185 |
-
|
186 |
-
|
187 |
-
*
|
188 |
-
|
189 |
-
= 1.9.
|
190 |
-
*
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
* Fix bug where image titles are blank
|
195 |
-
|
196 |
-
= 1.9.
|
197 |
-
*
|
198 |
-
|
199 |
-
= 1.9.
|
200 |
-
*
|
201 |
-
|
202 |
-
= 1.9.
|
203 |
-
*
|
204 |
-
|
205 |
-
= 1.9.
|
206 |
-
*
|
207 |
-
|
208 |
-
= 1.9.
|
209 |
-
*
|
210 |
-
|
211 |
-
= 1.9.
|
212 |
-
*
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
*
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
*
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
*
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
*
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
*
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
*
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
*
|
242 |
-
|
243 |
-
= 1.9.
|
244 |
-
*
|
245 |
-
|
246 |
-
= 1.9.
|
247 |
-
*
|
248 |
-
|
249 |
-
= 1.9.21 (2018-
|
250 |
-
* Fix:
|
251 |
-
|
252 |
-
= 1.9.
|
253 |
-
* Fix:
|
254 |
-
|
255 |
-
= 1.9.
|
256 |
-
* Fix:
|
257 |
-
|
258 |
-
= 1.9.
|
259 |
-
* Fix:
|
260 |
-
|
261 |
-
= 1.9.
|
262 |
-
* Fix:
|
263 |
-
|
264 |
-
= 1.9.
|
265 |
-
* Fix:
|
266 |
-
|
267 |
-
= 1.9.
|
268 |
-
* Fix:
|
269 |
-
|
270 |
-
= 1.9.
|
271 |
-
*
|
272 |
-
|
273 |
-
= 1.9.
|
274 |
-
* Feature:
|
275 |
-
|
276 |
-
= 1.9.
|
277 |
-
*
|
278 |
-
|
279 |
-
= 1.9.
|
280 |
-
* Fix:
|
281 |
-
|
282 |
-
|
283 |
-
*
|
284 |
-
|
285 |
-
|
286 |
-
*
|
287 |
-
|
288 |
-
= 1.9.
|
289 |
-
* Fix:
|
290 |
-
|
291 |
-
= 1.9.
|
292 |
-
* Fix:
|
293 |
-
|
294 |
-
= 1.9.
|
295 |
-
* Fix:
|
296 |
-
|
297 |
-
= 1.9.
|
298 |
-
* Fix:
|
299 |
-
|
300 |
-
= 1.9.
|
301 |
-
*
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
* Fix:
|
307 |
-
|
308 |
-
= 1.9.
|
309 |
-
*
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
* Fix:
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
*
|
319 |
-
|
320 |
-
|
321 |
-
*
|
322 |
-
* Fix:
|
323 |
-
* Fix:
|
324 |
-
|
325 |
-
|
326 |
-
*
|
327 |
-
|
328 |
-
|
329 |
-
*
|
330 |
-
|
331 |
-
|
332 |
-
*
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
*
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
*
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
*
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
*
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
*
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
*
|
358 |
-
|
359 |
-
= 1.8.
|
360 |
-
*
|
361 |
-
|
362 |
-
= 1.8.
|
363 |
-
*
|
364 |
-
|
365 |
-
|
366 |
-
*
|
367 |
-
*
|
368 |
-
* New setting "
|
369 |
-
*
|
370 |
-
*
|
371 |
-
|
372 |
-
|
373 |
-
*
|
374 |
-
|
375 |
-
|
376 |
-
*
|
377 |
-
*
|
378 |
-
|
379 |
-
|
380 |
-
*
|
381 |
-
|
382 |
-
= 1.8.
|
383 |
-
*
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
*
|
389 |
-
|
390 |
-
|
391 |
-
* Ensure
|
392 |
-
*
|
393 |
-
*
|
394 |
-
*
|
395 |
-
*
|
396 |
-
*
|
397 |
-
*
|
398 |
-
*
|
399 |
-
|
400 |
-
|
401 |
-
*
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
*
|
406 |
-
|
407 |
-
= 1.8.
|
408 |
-
* Fixed bug where
|
409 |
-
|
410 |
-
= 1.8.
|
411 |
-
* Fixed bug where
|
412 |
-
|
413 |
-
= 1.8.
|
414 |
-
*
|
415 |
-
|
416 |
-
= 1.8.
|
417 |
-
*
|
418 |
-
|
419 |
-
= 1.8.
|
420 |
-
* Fix bug where
|
421 |
-
|
422 |
-
= 1.8.
|
423 |
-
* Fix bug where
|
424 |
-
|
425 |
-
|
426 |
-
* Fix bug where
|
427 |
-
|
428 |
-
|
429 |
-
* Fix bug where
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
* Fix bug where
|
434 |
-
|
435 |
-
= 1.8.
|
436 |
-
*
|
437 |
-
|
438 |
-
|
439 |
-
*
|
440 |
-
*
|
441 |
-
|
442 |
-
|
443 |
-
*
|
444 |
-
|
445 |
-
= 1.8.
|
446 |
-
* Fix issue where
|
447 |
-
|
448 |
-
= 1.8.
|
449 |
-
* Fix issue where
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
* Fix
|
454 |
-
|
455 |
-
= 1.8.
|
456 |
-
* Fix
|
457 |
-
|
458 |
-
= 1.8.
|
459 |
-
* Fix bug where
|
460 |
-
|
461 |
-
= 1.8.
|
462 |
-
* Fix bug where
|
463 |
-
|
464 |
-
= 1.8.
|
465 |
-
* Fix bug where
|
466 |
-
|
467 |
-
= 1.8.
|
468 |
-
* Fix bug
|
469 |
-
|
470 |
-
= 1.8.
|
471 |
-
*
|
472 |
-
|
473 |
-
= 1.8.
|
474 |
-
*
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
*
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
* Fix bug where
|
484 |
-
|
485 |
-
|
486 |
-
*
|
487 |
-
* Fix
|
488 |
-
*
|
489 |
-
*
|
490 |
-
*
|
491 |
-
* New filter:
|
492 |
-
* New filter:
|
493 |
-
* New filter:
|
494 |
-
|
495 |
-
|
496 |
-
*
|
497 |
-
|
498 |
-
|
499 |
-
*
|
500 |
-
*
|
501 |
-
|
502 |
-
|
503 |
-
*
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
*
|
509 |
-
|
510 |
-
= 1.8.
|
511 |
-
*
|
512 |
-
|
513 |
-
= 1.8.
|
514 |
-
*
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
*
|
519 |
-
|
520 |
-
|
521 |
-
*
|
522 |
-
*
|
523 |
-
*
|
524 |
-
*
|
525 |
-
*
|
526 |
-
*
|
527 |
-
*
|
528 |
-
*
|
529 |
-
*
|
530 |
-
*
|
531 |
-
*
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
= 1.7.
|
541 |
-
*
|
542 |
-
|
543 |
-
= 1.7.
|
544 |
-
*
|
545 |
-
|
546 |
-
= 1.7.
|
547 |
-
*
|
548 |
-
|
549 |
-
= 1.7.
|
550 |
-
*
|
551 |
-
|
552 |
-
|
553 |
-
*
|
554 |
-
*
|
555 |
-
*
|
556 |
-
|
557 |
-
|
558 |
-
*
|
559 |
-
|
560 |
-
= 1.7.
|
561 |
-
*
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
*
|
566 |
-
|
567 |
-
= 1.7.
|
568 |
-
*
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
*
|
573 |
-
|
574 |
-
|
575 |
-
*
|
576 |
-
*
|
577 |
-
|
578 |
-
|
579 |
-
*
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
*
|
585 |
-
|
586 |
-
= 1.7.
|
587 |
-
*
|
588 |
-
|
589 |
-
|
590 |
-
*
|
591 |
-
|
592 |
-
|
593 |
-
*
|
594 |
-
|
595 |
-
= 1.7.
|
596 |
-
*
|
597 |
-
|
598 |
-
= 1.7.
|
599 |
-
*
|
600 |
-
|
601 |
-
|
602 |
-
*
|
603 |
-
|
604 |
-
|
605 |
-
*
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
*
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
*
|
614 |
-
|
615 |
-
= 1.7.
|
616 |
-
* Fix
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
*
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
*
|
626 |
-
|
627 |
-
= 1.7.
|
628 |
-
*
|
629 |
-
|
630 |
-
= 1.7.
|
631 |
-
*
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
*
|
637 |
-
|
638 |
-
|
639 |
-
*
|
640 |
-
*
|
641 |
-
*
|
642 |
-
|
643 |
-
|
644 |
-
*
|
645 |
-
|
646 |
-
= 1.7.
|
647 |
-
*
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
*
|
652 |
-
|
653 |
-
= 1.7.
|
654 |
-
*
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
*
|
659 |
-
|
660 |
-
= 1.7.
|
661 |
-
*
|
662 |
-
|
663 |
-
= 1.7.
|
664 |
-
*
|
665 |
-
|
666 |
-
= 1.7.
|
667 |
-
* Fixed
|
668 |
-
|
669 |
-
|
670 |
-
*
|
671 |
-
|
672 |
-
|
673 |
-
*
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
*
|
678 |
-
|
679 |
-
|
680 |
-
*
|
681 |
-
|
682 |
-
|
683 |
-
*
|
684 |
-
|
685 |
-
= 1.6.
|
686 |
-
*
|
687 |
-
|
688 |
-
= 1.6.
|
689 |
-
*
|
690 |
-
|
691 |
-
|
692 |
-
*
|
693 |
-
*
|
694 |
-
|
695 |
-
|
696 |
-
*
|
697 |
-
|
698 |
-
= 1.6.
|
699 |
-
*
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
*
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
*
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
*
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
*
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
*
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
* Fixed bug where
|
726 |
-
|
727 |
-
= 1.6.
|
728 |
-
*
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
* Fixed
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
*
|
738 |
-
|
739 |
-
= 1.6.
|
740 |
-
*
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
*
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
*
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
*
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
*
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
*
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
*
|
770 |
-
|
771 |
-
= 1.5.
|
772 |
-
*
|
773 |
-
|
774 |
-
|
775 |
-
*
|
776 |
-
|
777 |
-
|
778 |
-
*
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
*
|
784 |
-
|
785 |
-
|
786 |
-
*
|
787 |
-
*
|
788 |
-
|
789 |
-
|
790 |
-
*
|
791 |
-
|
792 |
-
= 1.5.
|
793 |
-
*
|
794 |
-
|
795 |
-
|
796 |
-
*
|
797 |
-
*
|
798 |
-
|
799 |
-
|
800 |
-
*
|
801 |
-
|
802 |
-
|
803 |
-
* Fixed
|
804 |
-
*
|
805 |
-
* Fixed
|
806 |
-
* Fixed bug where
|
807 |
-
*
|
808 |
-
|
809 |
-
|
810 |
-
*
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
*
|
816 |
-
|
817 |
-
|
818 |
-
* Added
|
819 |
-
|
820 |
-
|
821 |
-
* Added
|
822 |
-
|
823 |
-
|
824 |
-
*
|
825 |
-
*
|
826 |
-
*
|
827 |
-
|
828 |
-
|
829 |
-
* Added
|
830 |
-
|
831 |
-
|
832 |
-
* Added
|
833 |
-
|
834 |
-
|
835 |
-
*
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
*
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
*
|
845 |
-
|
846 |
-
|
847 |
-
* Fixed bug where
|
848 |
-
|
849 |
-
|
850 |
-
*
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
* Fixed bug where
|
855 |
-
|
856 |
-
|
857 |
-
*
|
858 |
-
|
859 |
-
|
860 |
-
*
|
861 |
-
|
862 |
-
|
863 |
-
*
|
864 |
-
*
|
865 |
-
*
|
866 |
-
*
|
867 |
-
|
868 |
-
|
869 |
-
* Added
|
870 |
-
|
871 |
-
|
872 |
-
*
|
873 |
-
*
|
874 |
-
*
|
875 |
-
|
876 |
-
|
877 |
-
*
|
878 |
-
|
879 |
-
|
880 |
-
*
|
881 |
-
|
882 |
-
|
883 |
-
*
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
*
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
*
|
894 |
-
|
895 |
-
|
896 |
-
*
|
897 |
-
|
898 |
-
|
899 |
-
*
|
900 |
-
|
901 |
-
|
902 |
-
*
|
903 |
-
*
|
904 |
-
*
|
905 |
-
*
|
906 |
-
*
|
907 |
-
*
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
= 1.4.
|
914 |
-
* Fixed bug where
|
915 |
-
|
916 |
-
= 1.4.
|
917 |
-
*
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
* Fixed bug
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
*
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
*
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
* Fixed bug
|
936 |
-
|
937 |
-
= 1.4.
|
938 |
-
* Fixed bug
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
*
|
948 |
-
|
949 |
-
|
950 |
-
*
|
951 |
-
|
952 |
-
|
953 |
-
*
|
954 |
-
|
955 |
-
|
956 |
-
*
|
957 |
-
|
958 |
-
|
959 |
-
* Fixed bug
|
960 |
-
|
961 |
-
|
962 |
-
* Fixed bug
|
963 |
-
|
964 |
-
= 1.4.
|
965 |
-
* Fixed bug
|
966 |
-
|
967 |
-
|
968 |
-
*
|
969 |
-
|
970 |
-
|
971 |
-
*
|
972 |
-
|
973 |
-
|
974 |
-
*
|
975 |
-
*
|
976 |
-
*
|
977 |
-
|
978 |
-
|
979 |
-
*
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
*
|
984 |
-
|
985 |
-
= 1.4.
|
986 |
-
* Fixed a bug where
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
* Fixed a bug
|
991 |
-
|
992 |
-
= 1.4.
|
993 |
-
* Fixed a bug
|
994 |
-
|
995 |
-
|
996 |
-
*
|
997 |
-
|
998 |
-
|
999 |
-
*
|
1000 |
-
|
1001 |
-
= 1.4.
|
1002 |
-
*
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
* Fixed a bug
|
1007 |
-
|
1008 |
-
= 1.4.
|
1009 |
-
* Fixed a bug
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
*
|
1014 |
-
|
1015 |
-
= 1.4.
|
1016 |
-
* Fixed a bug where
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
* Fixed a bug
|
1022 |
-
|
1023 |
-
= 1.4.
|
1024 |
-
* Fixed a bug
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
*
|
1029 |
-
|
1030 |
-
= 1.4.
|
1031 |
-
*
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
* Fixed bug where
|
1036 |
-
|
1037 |
-
|
1038 |
-
* Fixed bug where
|
1039 |
-
*
|
1040 |
-
* Fixed bug where
|
1041 |
-
* Fixed bug where
|
1042 |
-
*
|
1043 |
-
*
|
1044 |
-
|
1045 |
-
|
1046 |
-
*
|
1047 |
-
|
1048 |
-
|
1049 |
-
* Fixed
|
1050 |
-
*
|
1051 |
-
*
|
1052 |
-
|
1053 |
-
|
1054 |
-
* Fixed bug where
|
1055 |
-
|
1056 |
-
|
1057 |
-
* Fixed bug where
|
1058 |
-
* Fixed bug where
|
1059 |
-
|
1060 |
-
|
1061 |
-
* Fixed
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
* Fixed bug
|
1067 |
-
|
1068 |
-
= 1.4.
|
1069 |
-
*
|
1070 |
-
|
1071 |
-
|
1072 |
-
*
|
1073 |
-
* Fixed bug where
|
1074 |
-
*
|
1075 |
-
*
|
1076 |
-
*
|
1077 |
-
*
|
1078 |
-
*
|
1079 |
-
*
|
1080 |
-
* Added
|
1081 |
-
*
|
1082 |
-
* Fixed
|
1083 |
-
|
1084 |
-
|
1085 |
-
* Fixed bug
|
1086 |
-
|
1087 |
-
|
1088 |
-
*
|
1089 |
-
|
1090 |
-
|
1091 |
-
*
|
1092 |
-
|
1093 |
-
= 1.4.
|
1094 |
-
*
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
*
|
1102 |
-
*
|
1103 |
-
|
1104 |
-
*
|
1105 |
-
*
|
1106 |
-
|
1107 |
-
|
1108 |
-
*
|
1109 |
-
|
1110 |
-
|
1111 |
-
*
|
1112 |
-
*
|
1113 |
-
*
|
1114 |
-
*
|
1115 |
-
*
|
1116 |
-
|
1117 |
-
* Added
|
1118 |
-
*
|
1119 |
-
|
1120 |
-
*
|
1121 |
-
*
|
1122 |
-
|
1123 |
-
|
1124 |
-
*
|
1125 |
-
|
1126 |
-
|
1127 |
-
*
|
1128 |
-
|
1129 |
-
|
1130 |
-
*
|
1131 |
-
*
|
1132 |
-
*
|
1133 |
-
*
|
1134 |
-
|
1135 |
-
*
|
1136 |
-
* Fixed
|
1137 |
-
|
1138 |
-
*
|
1139 |
-
*
|
1140 |
-
|
1141 |
-
*
|
1142 |
-
*
|
1143 |
-
|
1144 |
-
|
1145 |
-
*
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
* Fixed
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
*
|
1154 |
-
*
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
*
|
1163 |
-
|
1164 |
-
|
1165 |
-
*
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
*
|
1173 |
-
|
1174 |
-
|
1175 |
-
*
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
* Added
|
1180 |
-
* Added
|
1181 |
-
*
|
1182 |
-
* Added option to
|
1183 |
-
* Added option to
|
1184 |
-
|
1185 |
-
* Added option to
|
1186 |
-
|
1187 |
-
|
1188 |
-
*
|
1189 |
-
|
1190 |
-
|
1191 |
-
*
|
1192 |
-
*
|
1193 |
-
|
1194 |
-
*
|
1195 |
-
*
|
1196 |
-
*
|
1197 |
-
*
|
1198 |
-
* Fixed
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
*
|
1205 |
-
*
|
1206 |
-
* Fixed
|
1207 |
-
*
|
1208 |
-
*
|
1209 |
-
|
1210 |
-
|
1211 |
-
*
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
*
|
1216 |
-
*
|
1217 |
-
|
1218 |
-
*
|
1219 |
-
*
|
1220 |
-
|
1221 |
-
|
1222 |
-
*
|
1223 |
-
*
|
1224 |
-
|
1225 |
-
*
|
1226 |
-
|
1227 |
-
|
1228 |
-
*
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
*
|
1239 |
-
|
1240 |
-
|
1241 |
-
*
|
1242 |
-
*
|
1243 |
-
|
1244 |
-
*
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
*
|
1252 |
-
*
|
1253 |
-
*
|
1254 |
-
*
|
1255 |
-
*
|
1256 |
-
*
|
1257 |
-
|
1258 |
-
|
1259 |
-
*
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
* Can
|
1264 |
-
|
1265 |
-
|
1266 |
-
*
|
1267 |
-
|
1268 |
-
*
|
1269 |
-
*
|
1270 |
-
*
|
1271 |
-
|
1272 |
-
*
|
1273 |
-
*
|
1274 |
-
|
1275 |
-
|
1276 |
-
*
|
1277 |
-
* Added
|
1278 |
-
*
|
1279 |
-
*
|
1280 |
-
|
1281 |
-
*
|
1282 |
-
*
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
*
|
1293 |
-
|
1294 |
-
|
1295 |
-
*
|
1296 |
-
|
1297 |
-
|
1298 |
-
* Added
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
*
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
*
|
1308 |
-
|
1309 |
-
|
1310 |
-
*
|
1311 |
-
*
|
1312 |
-
*
|
1313 |
-
*
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
*
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
*
|
1340 |
-
|
1341 |
-
|
1342 |
-
*
|
1343 |
-
*
|
1344 |
-
*
|
1345 |
-
*
|
1346 |
-
|
1347 |
-
|
1348 |
-
* BUGFIX: Typo
|
1349 |
-
|
1350 |
-
= 0.9.9.3.
|
1351 |
-
* BUGFIX:
|
1352 |
-
|
1353 |
-
= 0.9.9.3 =
|
1354 |
-
* BUGFIX:
|
1355 |
-
|
1356 |
-
|
1357 |
-
* BUGFIX:
|
1358 |
-
*
|
1359 |
-
* BUGFIX:
|
1360 |
-
*
|
1361 |
-
*
|
1362 |
-
* BUGFIX:
|
1363 |
-
|
1364 |
-
|
1365 |
-
* BUGFIX:
|
1366 |
-
|
1367 |
-
|
1368 |
-
*
|
1369 |
-
*
|
1370 |
-
*
|
1371 |
-
|
1372 |
-
|
1373 |
-
* BUGFIX:
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
*
|
1378 |
-
|
1379 |
-
|
1380 |
-
*
|
1381 |
-
|
1382 |
-
|
1383 |
-
* BUGFIX:
|
1384 |
-
|
1385 |
-
= 0.9.8.
|
1386 |
-
* BUGFIX:
|
1387 |
-
*
|
1388 |
-
|
1389 |
-
*
|
1390 |
-
* BUGFIX:
|
1391 |
-
*
|
1392 |
-
* FEATURE:
|
1393 |
-
*
|
1394 |
-
|
1395 |
-
|
1396 |
-
*
|
1397 |
-
|
1398 |
-
|
1399 |
-
* BUGFIX:
|
1400 |
-
* BUGFIX:
|
1401 |
-
* BUGFIX:
|
1402 |
-
* BUGFIX:
|
1403 |
-
* BUGFIX:
|
1404 |
-
* BUGFIX:
|
1405 |
-
* BUGFIX:
|
1406 |
-
* BUGFIX:
|
1407 |
-
* BUGFIX:
|
1408 |
-
* BUGFIX:
|
1409 |
-
*
|
1410 |
-
|
1411 |
-
* BUGFIX:
|
1412 |
-
*
|
1413 |
-
|
1414 |
-
* BUGFIX:
|
1415 |
-
|
1416 |
-
|
1417 |
-
* BUGFIX:
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
* BUGFIX: The test
|
1423 |
-
|
1424 |
-
= 0.9.8 =
|
1425 |
-
* BUGFIX:
|
1426 |
-
|
1427 |
-
|
1428 |
-
*
|
1429 |
-
* BUGFIX:
|
1430 |
-
*
|
1431 |
-
|
1432 |
-
|
1433 |
-
*
|
1434 |
-
|
1435 |
-
|
1436 |
-
*
|
1437 |
-
* BUGFIX:
|
1438 |
-
*
|
1439 |
-
* FEATURE:
|
1440 |
-
*
|
1441 |
-
|
1442 |
-
|
1443 |
-
*
|
1444 |
-
|
1445 |
-
|
1446 |
-
* BUGFIX:
|
1447 |
-
* FEATURE:
|
1448 |
-
* BUGFIX:
|
1449 |
-
* BUGFIX:
|
1450 |
-
* FEATURE:
|
1451 |
-
*
|
1452 |
-
|
1453 |
-
|
1454 |
-
*
|
1455 |
-
|
1456 |
-
|
1457 |
-
* BUGFIX:
|
1458 |
-
*
|
1459 |
-
*
|
1460 |
-
|
1461 |
-
|
1462 |
-
*
|
1463 |
-
|
1464 |
-
|
1465 |
-
*
|
1466 |
-
|
1467 |
-
* BUGFIX:
|
1468 |
-
*
|
1469 |
-
|
1470 |
-
*
|
1471 |
-
*
|
1472 |
-
* BUGFIX:
|
1473 |
-
*
|
1474 |
-
*
|
1475 |
-
* BUGFIX:
|
1476 |
-
* BUGFIX:
|
1477 |
-
*
|
1478 |
-
|
1479 |
-
|
1480 |
-
* BUGFIX:
|
1481 |
-
|
1482 |
-
|
1483 |
-
*
|
1484 |
-
* BUGFIX:
|
1485 |
-
* FEATURE:
|
1486 |
-
* FEATURE:
|
1487 |
-
*
|
1488 |
-
* FEATURE:
|
1489 |
-
|
1490 |
-
|
1491 |
-
*
|
1492 |
-
|
1493 |
-
= 0.9.
|
1494 |
-
*
|
1495 |
-
|
1496 |
-
= 0.9.
|
1497 |
-
*
|
1498 |
-
|
1499 |
-
= 0.9 =
|
1500 |
-
*
|
1501 |
-
|
1502 |
-
|
1503 |
-
*
|
1504 |
-
*
|
1505 |
-
|
1506 |
-
|
1507 |
-
*
|
1508 |
-
|
1509 |
-
|
1510 |
-
*
|
1511 |
-
* FEATURE -
|
1512 |
-
*
|
1513 |
-
*
|
1514 |
-
*
|
1515 |
-
|
1516 |
-
|
1517 |
-
*
|
1518 |
-
|
1519 |
-
|
1520 |
-
*
|
1521 |
-
*
|
1522 |
-
|
1523 |
-
|
1524 |
-
*
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
*
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
*
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
*
|
1540 |
-
|
1541 |
-
|
1542 |
-
*
|
1543 |
-
*
|
1544 |
-
*
|
1545 |
-
*
|
1546 |
-
* if
|
1547 |
-
|
1548 |
-
|
1549 |
-
*
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
*
|
1554 |
-
|
1555 |
-
= 0.312.
|
1556 |
-
* Bug Fix
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
*
|
1561 |
-
|
1562 |
-
|
1563 |
-
*
|
1564 |
-
*
|
1565 |
-
|
1566 |
-
|
1567 |
-
*
|
1568 |
-
|
1569 |
-
|
1570 |
-
*
|
1571 |
-
*
|
1572 |
-
*
|
1573 |
-
*
|
1574 |
-
*
|
1575 |
-
* Added
|
1576 |
-
* Added ability to
|
1577 |
-
|
1578 |
-
=
|
1579 |
-
*
|
1580 |
-
|
1581 |
-
= 0.312.
|
1582 |
-
*
|
1583 |
-
|
1584 |
-
|
1585 |
-
* Added
|
1586 |
-
*
|
1587 |
-
*
|
1588 |
-
*
|
1589 |
-
*
|
1590 |
-
*
|
1591 |
-
*
|
1592 |
-
|
1593 |
-
|
1594 |
-
*
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
*
|
1599 |
-
|
1600 |
-
= 0.
|
1601 |
-
*
|
1602 |
-
|
1603 |
-
|
1604 |
-
*
|
1605 |
-
*
|
1606 |
-
|
1607 |
-
|
1608 |
-
*
|
1609 |
-
|
1610 |
-
|
1611 |
-
*
|
1612 |
-
|
1613 |
-
*
|
1614 |
-
*
|
1615 |
-
|
1616 |
-
*
|
1617 |
-
* Added
|
1618 |
-
*
|
1619 |
-
*
|
1620 |
-
*
|
1621 |
-
*
|
1622 |
-
*
|
1623 |
-
|
1624 |
-
*
|
|
|
|
|
|
|
1625 |
|
7 |
Requires PHP: 5.3
|
8 |
Requires at least: 4.0
|
9 |
Tested up to: 5.9
|
10 |
+
Stable tag: 1.9.60
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
56 |
7. Video and Audio options
|
57 |
8. Attachment options
|
58 |
|
59 |
+
== Installation ==
|
60 |
+
* Install Postie either via the WordPress.org plugin directory, or by uploading the files to your server.
|
61 |
+
* Activate Postie through the Plugins menu in WordPress.
|
62 |
+
* Configure the plugin by going to the Postie menu that appears in your admin menu.
|
63 |
+
* Make sure you enter the mailserver information correctly, including the type of connection and the port number.
|
64 |
+
* More information can be found at <a href="http://postieplugin.com/">http://postieplugin.com/</a>
|
65 |
+
|
66 |
+
== Usage ==
|
67 |
+
|
68 |
+
Please visit our site at <a href="http://postieplugin.com/">http://postieplugin.com/</a>
|
69 |
+
|
70 |
+
== Frequently Asked Questions ==
|
71 |
+
|
72 |
+
Please visit our FAQ page at <a href="http://postieplugin.com/faq/">http://postieplugin.com/faq/</a>
|
73 |
+
== Upgrade Notice ==
|
74 |
+
|
75 |
+
= 1.8.23 =
|
76 |
+
Postie now respects the blog timezone, this may require you to change the "Postie Time Correction" setting.
|
77 |
+
|
78 |
+
= 1.8.0 =
|
79 |
+
The php-imap library has been replaced with logic based on Flourish fMailbox et al, there are some differences in the structure of the mail header array. This affects the
|
80 |
+
postie_filter_email3 and postie_post_before filters.
|
81 |
+
See http://flourishlib.com/docs/fMailbox
|
82 |
+
|
83 |
+
= 1.6.0 =
|
84 |
+
Remote cron jobs need to update the URL used to kick off a manual email check. The new URL is http://<mysite>/?postie=get-mail
|
85 |
+
Accessing http://<mysite>/wp-content/plugins/postie/get_mail.php will now receive a 403 error and a message stating what the new URL should be.
|
86 |
+
The Postie menu is now at the main level rather than a Settings submenu.
|
87 |
+
|
88 |
+
= 1.5.14 =
|
89 |
+
The postie_post filter has be deprecated in favor of postie_post_before.
|
90 |
+
|
91 |
+
= 1.5.3 =
|
92 |
+
Postie can now set the first image in an email to be the "Featured" image. There is a new setting "Use First Image as Featured Image" which is off by default.
|
93 |
+
Postie now supports Use Transport Layer Security (TLS)
|
94 |
+
|
95 |
+
= 1.5.0 =
|
96 |
+
New filter postie_filter_email. Used to map "from" to any other email. Allows custom user mapping.
|
97 |
+
|
98 |
+
= 1.4.41 =
|
99 |
+
Post format is now supported. You can specify any of the WordPress supported post formats using the Post type syntax.
|
100 |
+
Post status can now be specified using the status: tag.
|
101 |
+
Post status setting was renamed to Default Post Status and moved to the Message tab.
|
102 |
+
|
103 |
+
= 1.4.10 =
|
104 |
+
All script, style and body tags are stripped from html emails.
|
105 |
+
|
106 |
+
= 1.4.6 =
|
107 |
+
Attachments are now processed in the order they were attached.
|
108 |
+
|
109 |
+
== CHANGELOG ==
|
110 |
+
= 1.9.60 (2022-04-13)
|
111 |
+
* Add translatable strings to email notification
|
112 |
+
|
113 |
+
= 1.9.59 (2022-01-02)
|
114 |
+
* fix surrounding div with postie-post class name for plain text messages
|
115 |
+
|
116 |
+
= 1.9.58 (2021-12-27)
|
117 |
+
* deal with possibility of no post formats (reported by @rogerlos)
|
118 |
+
* add surrounding div with postie-post class name for CSS rules for themes.
|
119 |
+
|
120 |
+
= 1.9.57 (2021-09-07)
|
121 |
+
* if any attachment doesn't have a file extension use the secondary mime type
|
122 |
+
|
123 |
+
= 1.9.56 (2021-08-06)
|
124 |
+
* remove Allow HTML In Mail Body from settings as it didn't do anything
|
125 |
+
* add Allow Duplicate Comments setting to deal with WordPress killing the import
|
126 |
+
* fix issue where unknown email was leaving tmppost, now creates draft message
|
127 |
+
* add setting to disable legacy commands
|
128 |
+
|
129 |
+
= 1.9.55 (2021-03-09)
|
130 |
+
* Add post id to action postie_comment_after
|
131 |
+
* remove Create Alternate Image Sizes from settings as it didn't do anything
|
132 |
+
* Add compatibility for WordPress 5.7
|
133 |
+
|
134 |
+
= 1.9.54 (2020-10-18)
|
135 |
+
* Add compatibility for WordPress 5.5
|
136 |
+
|
137 |
+
= 1.9.53 (2020-06-05)
|
138 |
+
* Add postie_subject filter
|
139 |
+
|
140 |
+
= 1.9.52 (2020-05-19)
|
141 |
+
* Fix issue with detecting categories when there are multiple colons in the subject line
|
142 |
+
|
143 |
+
= 1.9.51 (2020-05-08)
|
144 |
+
* remove ob_end_flush from log_onscreen()
|
145 |
+
|
146 |
+
= 1.9.50 (2020-04-21)
|
147 |
+
* Add more wp_insert_post failure logging
|
148 |
+
|
149 |
+
= 1.9.49 (2020-04-19)
|
150 |
+
* Add more wp_insert_post failure logging
|
151 |
+
|
152 |
+
= 1.9.48 (2020-04-18)
|
153 |
+
* Add more wp_insert_post failure logging
|
154 |
+
|
155 |
+
= 1.9.47 (2020-04-16)
|
156 |
+
* Add wp_insert_post failure logging
|
157 |
+
|
158 |
+
= 1.9.46 (2020-04-11)
|
159 |
+
* escape IMAP password
|
160 |
+
* fix logging in get_parent_postid
|
161 |
+
* ensure any modification by shortcode are retained
|
162 |
+
|
163 |
+
= 1.9.45 (2020-03-29) =
|
164 |
+
* Fix email notification bug
|
165 |
+
|
166 |
+
= 1.9.44 (2020-03-23) =
|
167 |
+
* refactoring to separate email fetch from email processing
|
168 |
+
* add postie_register_shortcode_pre action for registering Postie shortcodes
|
169 |
+
|
170 |
+
= 1.9.43 (2020-02-18) =
|
171 |
+
* Begin migration of shortcode support into Postie main
|
172 |
+
|
173 |
+
= 1.9.42 (2020-02-18) =
|
174 |
+
* Fix: signature stripping in html emails was failing sometimes
|
175 |
+
|
176 |
+
= 1.9.41 (2020-02-01) =
|
177 |
+
* Fix: different regex approach for html vs plain
|
178 |
+
* Only process 1 email at a time
|
179 |
+
|
180 |
+
= 1.9.40 (2019-11-13) =
|
181 |
+
* Fix issue with class-oembed.php upgrade
|
182 |
+
|
183 |
+
= 1.9.39 (2019-11-12) =
|
184 |
+
* Add Site Health checks
|
185 |
+
* PHP 7.3 compatibility
|
186 |
+
* Fix bug where if Remove matched categories is No then the default category is always set.
|
187 |
+
* Address deprecated file class-oembed.php
|
188 |
+
|
189 |
+
= 1.9.38 (2019-07-27) =
|
190 |
+
* Fix bug where filtering out an attachment prevented other attachments from being processed
|
191 |
+
|
192 |
+
= 1.9.37 (2019-06-20) =
|
193 |
+
* Update logging to output encoding info
|
194 |
+
* Fix bug where non-image titles are blank
|
195 |
+
|
196 |
+
= 1.9.36 (2019-06-11) =
|
197 |
+
* Fix bug where image titles are blank
|
198 |
+
|
199 |
+
= 1.9.35 (2019-05-31) =
|
200 |
+
* Allow for a single admin when sending post confirmation emails
|
201 |
+
|
202 |
+
= 1.9.34 (2019-05-15) =
|
203 |
+
* Workaround for WP bug #39521 to correctly set image caption from image metadata
|
204 |
+
|
205 |
+
= 1.9.33 (2019-04-29) =
|
206 |
+
* Assign author to all media items
|
207 |
+
|
208 |
+
= 1.9.32 (2019-03-02) =
|
209 |
+
* Move intermediate_image_sizes_advanced filter to only be effective when Postie is running
|
210 |
+
|
211 |
+
= 1.9.31 (2019-02-28) =
|
212 |
+
* Additional logging to chase down customer issue
|
213 |
+
|
214 |
+
= 1.9.30 (2019-02-25) =
|
215 |
+
* WP 5.1 compatibility testing
|
216 |
+
* Add setting to skip image resizing
|
217 |
+
|
218 |
+
= 1.9.29 (2019-02-18) =
|
219 |
+
* Fix delay, command was not being removed from content in all cases
|
220 |
+
* Additional debug output to track down attachment issue
|
221 |
+
|
222 |
+
= 1.9.28 (2019-01-10) =
|
223 |
+
* fix IMAP end of message detection
|
224 |
+
* remove insecure cURL settings
|
225 |
+
* fix simple_html_dom regex to be compatible with PHP 7.3
|
226 |
+
|
227 |
+
= 1.9.27 (2018-12-20) =
|
228 |
+
* Add new filter postie_parent_post to allow custom parent post detection
|
229 |
+
* Existing parent post detection now only looks at the configured post type and uses the most recent if multiple are found
|
230 |
+
|
231 |
+
= 1.9.26 (2018-11-23) =
|
232 |
+
* If no category is specified and the post type is "page" then the default category is not added
|
233 |
+
* Additional CID changes
|
234 |
+
|
235 |
+
= 1.9.25 (2018-10-02) =
|
236 |
+
* Add support for CIDs with surrounding <>
|
237 |
+
* Add support for URLs with unusual characters
|
238 |
+
|
239 |
+
= 1.9.24 (2018-07-12) =
|
240 |
+
* log functions that use Postie filters
|
241 |
+
* remove empty tags
|
242 |
+
|
243 |
+
= 1.9.23 (2018-05-28) =
|
244 |
+
* Fix issue when attachment doesn't conform to MIME standard
|
245 |
+
|
246 |
+
= 1.9.22 (2018-05-28) =
|
247 |
+
* Remove Text for Message Start and Text for Message End defaults as they conflicted with some CSS
|
248 |
+
|
249 |
+
= 1.9.21 (2018-05-08) =
|
250 |
+
* Fix: WP is removing backslashes so double them up before saving
|
251 |
+
|
252 |
+
= 1.9.21 (2018-04-11) =
|
253 |
+
* Fix: Compatibility with PHP 5.2-5.4
|
254 |
+
|
255 |
+
= 1.9.20 (2018-04-11) =
|
256 |
+
* Fix: Don't emit attachment div if there is no content after template generation
|
257 |
+
|
258 |
+
= 1.9.19 (2018-03-21) =
|
259 |
+
* Fix: Recognize paragraph line ending in text mode for both styles
|
260 |
+
|
261 |
+
= 1.9.18 (2018-03-13) =
|
262 |
+
* Fix: new signature removal logic removed line endings in some cases
|
263 |
+
|
264 |
+
= 1.9.17 (2018-03-12) =
|
265 |
+
* Fix: Plain text with < > being processed as html causing loss of content during signature removal
|
266 |
+
|
267 |
+
= 1.9.16 (2018-02-21) =
|
268 |
+
* Fix: don't linkify URLs in style attributes
|
269 |
+
|
270 |
+
= 1.9.15 (2018-01-25) =
|
271 |
+
* Fix: accommodate extra spaces in content type header when charset is specified
|
272 |
+
|
273 |
+
= 1.9.14 (2017-12-01) =
|
274 |
+
* Feature: Additional logging of graphics library in use.
|
275 |
+
|
276 |
+
= 1.9.13 (2017-11-22) =
|
277 |
+
* Feature: New filter postie_include_attachment to allow/prevent attachment to be added to post. See http://postieplugin.com/filter-postie_include_attachment/
|
278 |
+
|
279 |
+
= 1.9.12 (2017-11-15) =
|
280 |
+
* Fix: use wp native function to detect MySQL version
|
281 |
+
|
282 |
+
= 1.9.11 (2017-11-10) =
|
283 |
+
* Fix: remove encoding option, everything is UTF-8.
|
284 |
+
* Feature: add MySQL version to debug output, suppress many email parsing debug messages
|
285 |
+
* Fix: don't set actual post format if "standard"
|
286 |
+
* Feature: Hides WordPress post-by-email feature if Postie is active
|
287 |
+
|
288 |
+
= 1.9.10 (2017-10-31) =
|
289 |
+
* Fix: WP CLI compatibility
|
290 |
+
|
291 |
+
= 1.9.9 (2017-10-30) =
|
292 |
+
* Fix: remove assumption that there is a user with the administrator role
|
293 |
+
|
294 |
+
= 1.9.8 (2017-10-23) =
|
295 |
+
* Fix: check that global is initialized before using
|
296 |
+
|
297 |
+
= 1.9.7 (2017-10-19) =
|
298 |
+
* Fix: more robustness if iconv fails
|
299 |
+
|
300 |
+
= 1.9.6 (2017-10-19) =
|
301 |
+
* Fix: Post format was not being correctly set.
|
302 |
+
|
303 |
+
= 1.9.5 (2017-10-13) =
|
304 |
+
* Feature: change post status to pending/draft if the user doesn't have publish_posts capability
|
305 |
+
* Fix: process postie_email_notify_recipients filter regardless of the "Send post confirmation email to" setting
|
306 |
+
* Fix: process postie_email_reject_recipients filter regardless of the "Send post confirmation email to" setting
|
307 |
+
|
308 |
+
= 1.9.4 (2017.08.10) =
|
309 |
+
* Fix: Incorrectly looking for links in html head style blocks
|
310 |
+
|
311 |
+
= 1.9.3 (2017.08.04) =
|
312 |
+
* Feature: Add "every 2 hours" option
|
313 |
+
* Fix: Include actual response when IMAP authentication fails
|
314 |
+
* Fix: Incorrectly processing text/html sections as attachments in some cases
|
315 |
+
|
316 |
+
= 1.9.2 (2017.07.24) =
|
317 |
+
* Fix: Uninitialized variable in Postie::create_post()
|
318 |
+
* Fix: More robust tag detection
|
319 |
+
|
320 |
+
= 1.9.1 (2017-06-28) =
|
321 |
+
* Feature: Add postie_file_added_pre action
|
322 |
+
* Fix: improvements to tag detection
|
323 |
+
* Fix: tags may be specified multiple times
|
324 |
+
* Fix: significant code restructure to bring Postie in line with current coding practices
|
325 |
+
* Fix: move signature removal to before newline filtering
|
326 |
+
* Fix: signature removal was deleting all text if the matching regex had whitespace characters
|
327 |
+
|
328 |
+
= 1.8.45 (2017-06-21) =
|
329 |
+
* Feature: If image placement directive has a caption, update the image metadata to include the caption.
|
330 |
+
* Fix: Only process delay tag if date was found in header
|
331 |
+
* Fix: Date tag overrides header and no offsets are applied
|
332 |
+
* Fix: Check for term slug as well as name
|
333 |
+
|
334 |
+
= 1.8.44 (2017-06-14) =
|
335 |
+
* Ensure only users from current site are validated.
|
336 |
+
* Process newlines earlier in process.
|
337 |
+
* WordPress 4.8 compatibility testing.
|
338 |
+
|
339 |
+
= 1.8.43 (2017-05-10) =
|
340 |
+
* Fix "postie-attachments" div to wrap the right content
|
341 |
+
* Fix time zone adjustment
|
342 |
+
|
343 |
+
= 1.8.42 (2017-05-10) =
|
344 |
+
* Wrap all attachments in div with css class "postie-attachments"
|
345 |
+
* Remove APOP authentication attempt as some servers disconnect on failure.
|
346 |
+
|
347 |
+
= 1.8.41 (2017-05-05) =
|
348 |
+
* Organizational changes in prep for move to more OO approach
|
349 |
+
* Fix error when time offset is negative.
|
350 |
+
|
351 |
+
= 1.8.40 (2017-04-24) =
|
352 |
+
* Ensure date set to current date when configured
|
353 |
+
* Compatibility testing with WordPress 4.7.4
|
354 |
+
|
355 |
+
= 1.8.39 (2017-04-18) =
|
356 |
+
* Ensure the time zone is set when calculating the post time.
|
357 |
+
* Additional debug output
|
358 |
+
|
359 |
+
= 1.8.38 (2017-04-06) =
|
360 |
+
* Update postie_notify_error to be less noisy.
|
361 |
+
|
362 |
+
= 1.8.37 (2017-04-05) =
|
363 |
+
* Remove DateTimeImmutable references to be compatible with old versions of PHP
|
364 |
+
|
365 |
+
= 1.8.36 (2017-04-05) =
|
366 |
+
* Allow user to specify a IMAP folder (supplied by Alejandro Liu)
|
367 |
+
* Fix postie_file_added action
|
368 |
+
* New setting "use time offset" which controls whether or not the postie time offset is applied.
|
369 |
+
* New setting "ignore_email_date" which controls whether or not the email "from" date is used.
|
370 |
+
* Other email to post date improvements
|
371 |
+
* New setting "Notify on Error" to control who gets notified on significant errors.
|
372 |
+
* Email admins on some errors
|
373 |
+
* Fix bug when parsing headers that have multiple encoded sections
|
374 |
+
|
375 |
+
= 1.8.35 (2017-03-21) =
|
376 |
+
* Check for blank image file extension and replace with mime subtype to get around new filetype checking in WordPress 4.7.2 https://core.trac.wordpress.org/ticket/39550
|
377 |
+
* Additional logging of message and part headers
|
378 |
+
* Fix base64 header decoding so trailing space isn't removed
|
379 |
+
* Fix header decoding to remove extra utf-8 byte order mark
|
380 |
+
* Add current WordPress time to logging
|
381 |
+
|
382 |
+
= 1.8.34 (2017-03-15) =
|
383 |
+
* Fix bug when sending reject email
|
384 |
+
|
385 |
+
= 1.8.33 (2017-03-13) =
|
386 |
+
* New setting "Remove matched categories" allows category specifiers to remain in post title.
|
387 |
+
* New filter postie_cleanhtml to determine if Postie should clean up the html or if some other AddOn will do it.
|
388 |
+
* Specifically call out public methods
|
389 |
+
|
390 |
+
= 1.8.32 (2017-03-07) =
|
391 |
+
* Ensure password not in logs for POP3.
|
392 |
+
* Additional POP3 header checks.
|
393 |
+
* Additional POP3 logging.
|
394 |
+
* Ensure postie_raw always gets called.
|
395 |
+
* Default to GMT when timezone is blank.
|
396 |
+
* Use WordPress function to upload images rather than old custom function.
|
397 |
+
* Remove Generate Thumbnails option as now handled by WordPress.
|
398 |
+
* ATT00001.txt and its ilk are now always considered a banned attachment regardless of MIME type.
|
399 |
+
* Removed call to date_default_timezone_set()
|
400 |
+
* Send notifications to all WP admins if configured.
|
401 |
+
* Add support for postie_category filter.
|
402 |
+
|
403 |
+
= 1.8.31 (2017-02-07) =
|
404 |
+
* Remove timezone warning if GMT+0
|
405 |
+
* Add postie_bare_link filter
|
406 |
+
|
407 |
+
= 1.8.30 (2017-02-06) =
|
408 |
+
* Fixed bug where Postie won't run on PHP versions prior to 5.5.
|
409 |
+
|
410 |
+
= 1.8.29 (2017-02-06) =
|
411 |
+
* Fixed bug where "Include Featured Image in Post" = No was not being respected with inline images (iOS mail).
|
412 |
+
|
413 |
+
= 1.8.28 (2017-01-26) =
|
414 |
+
* Fixed bug where having ignored files can cause email body to be blank.
|
415 |
+
|
416 |
+
= 1.8.27 (2017-01-26) =
|
417 |
+
* Added postie_raw action.
|
418 |
+
|
419 |
+
= 1.8.26 (2017-01-24) =
|
420 |
+
* Fix bug where WordPress timezone was not being taken into effect.
|
421 |
+
|
422 |
+
= 1.8.25 (2017-01-20) =
|
423 |
+
* Fix bug where server settings page not compatible with PHP 5.3
|
424 |
+
|
425 |
+
= 1.8.24 (2017-01-20) =
|
426 |
+
* Fix bug where debug output was displaying plaintext passwords.
|
427 |
+
* Fix bug where categories specified with a colon required a space after the colon.
|
428 |
+
* Postie now works off blog time rather than GMT.
|
429 |
+
* Fix bug where oEmbed::get_provider() is not available on WP versions prior to 4.0.
|
430 |
+
|
431 |
+
= 1.8.23 (2017-01-12) =
|
432 |
+
* Fix bug where long subject lines are missing a space.
|
433 |
+
* Fix bug where {CAPTION} placeholder not being removed if no caption.
|
434 |
+
|
435 |
+
= 1.8.22 (2016-12-07) =
|
436 |
+
* Fix bug where Image Place Holder Tag setting was not respected
|
437 |
+
|
438 |
+
= 1.8.21 (2016-12-07) =
|
439 |
+
* Clarified the behavior of the "Use custom image field for images" setting and moved it to the Image tab.
|
440 |
+
* Clarified text on some settings.
|
441 |
+
* Fix bug which prevented captions from working correctly
|
442 |
+
* Fix bug which prevented more than 9 #img# references from working.
|
443 |
+
* Account for unicode non-breaking spaces in regular expressions.
|
444 |
+
|
445 |
+
= 1.8.20 (2016-11-21) =
|
446 |
+
* Fix issue where attachment with Content-ID doesn't have a reference in the html not being added to the post.
|
447 |
+
|
448 |
+
= 1.8.19 (2016-11-16) =
|
449 |
+
* Fix issue where attachments not showing if both plain and html are blank and the attachment is part of a multipart (related) block.
|
450 |
+
|
451 |
+
= 1.8.18 (2016-11-16) =
|
452 |
+
* Fix issue where inline PDF was not being detected as a PDF.
|
453 |
+
* Fix issue where outlook.com is setting an incorrect mime type on images.
|
454 |
+
|
455 |
+
= 1.8.17 (2016-11-03) =
|
456 |
+
* Fix bugs in cURL connection.
|
457 |
+
|
458 |
+
= 1.8.16 (2016-11-03) =
|
459 |
+
* Fix bug where postie_place_media_before and postie_place_media_after were being called incorrectly.
|
460 |
+
|
461 |
+
= 1.8.15 (2016-11-02) =
|
462 |
+
* Fix bug where inline images were not being replaced correctly if WordPress changed the name of the attachment via sanitize_file_name()
|
463 |
+
|
464 |
+
= 1.8.14 (2016-11-01) =
|
465 |
+
* Fix bug where OS detection failure was preventing email processing
|
466 |
+
|
467 |
+
= 1.8.13 (2016-10-31) =
|
468 |
+
* Fix bug where inline images were not being found due to case differences, e.g. img_4180.jpg vs. IMG_4180.JPG
|
469 |
+
|
470 |
+
= 1.8.12 (2016-10-25) =
|
471 |
+
* Fix bug in postie_email_notify_body filter where the modified body is not used for the email.
|
472 |
+
|
473 |
+
= 1.8.11 (2016-10-24) =
|
474 |
+
* Support Dovecot IMAP server better
|
475 |
+
|
476 |
+
= 1.8.10 (2016-10-24) =
|
477 |
+
* New filter postie_place_media - allows markup to be changed when #img# references are being replaced.
|
478 |
+
* New filter postie_place_media_before - allows markup to be changed when attachment templates are placed before the content.
|
479 |
+
* New filter postie_place_media_after - allows markup to be changed when attachment templates are placed after the content.
|
480 |
+
|
481 |
+
= 1.8.9 (2016-10-23) =
|
482 |
+
* Fix bug when calling new postie_email_* filters
|
483 |
+
* Fix bug where inline and related attachments were not being considered for #img#
|
484 |
+
|
485 |
+
= 1.8.8 (2016-10-21) =
|
486 |
+
* Fix bug where success/fail email notifications had missing info.
|
487 |
+
* Fix bug where galley wan't being inserted on some plain text messages
|
488 |
+
* Enhance auto linkification to recognize links like <http://example.com/>
|
489 |
+
* Separate success and failure emails.
|
490 |
+
* Fix readme
|
491 |
+
* New filter: postie_email_reject_recipients - allows recipients list to be altered when sending failure message
|
492 |
+
* New filter: postie_email_reject_subject - allows the subject to be altered when sending failure message
|
493 |
+
* New filter: postie_email_reject_body - allows message content to be altered when sending failure message
|
494 |
+
* New filter: postie_email_notify_recipients - allows recipients list to be altered when sending success message
|
495 |
+
* New filter: postie_email_notify_subject - allows the subject to be altered when sending success message
|
496 |
+
* New filter: postie_email_notify_body - allows message content to be altered when sending success message
|
497 |
+
|
498 |
+
= 1.8.7 (2016-10-20) =
|
499 |
+
* Make code compatible with PHP 5.2
|
500 |
+
* Fix bug where the connection tried to use TLS even though it shouldn't
|
501 |
+
* Switch to stream API vs sockets since sockets don't seem to be installed typically and the stream API is core.
|
502 |
+
* Allow self signed certificates with socket connections
|
503 |
+
* Don't check peer name with socket connections, many hosting companies aren't configured correctly
|
504 |
+
|
505 |
+
= 1.8.6 (2016-10-19) =
|
506 |
+
* Fix bug where the featured image was not included even though config said it should be.
|
507 |
+
* Ensure Socket connections try to connect with TLS 1.0, 1.1 and 1.2 if SSL is specified.
|
508 |
+
* Additional logging to help diagnose cURL issue.
|
509 |
+
|
510 |
+
= 1.8.5 (2016-10-18) =
|
511 |
+
* Fix to check if cURL is installed before using
|
512 |
+
|
513 |
+
= 1.8.4 (2016-10-17) =
|
514 |
+
* General release
|
515 |
+
|
516 |
+
= 1.8.3 (beta 4) =
|
517 |
+
* Refactor attachment handling
|
518 |
+
* Gallery shortcode handling is now correct when there are both images and non-images.
|
519 |
+
|
520 |
+
= 1.8.2 (beta 3) =
|
521 |
+
* New icon set thanks to Chris Lacey
|
522 |
+
* php-imap replaced by cURL and Socket connection - work sponsored by xsell.net
|
523 |
+
* TLS automatically detected, setting removed
|
524 |
+
* Ignore mail state no longer supported, setting removed
|
525 |
+
* Header array in filter_email3 and postie_post_before filters have changed format
|
526 |
+
* Fixed paragraph detection in plain text when removing newlines
|
527 |
+
* Removed old partially functioning forward detection logic
|
528 |
+
* Transform "[cid:xxx-xx-xx]" references gmail adds to image references.
|
529 |
+
* Add new filter: postie_post_pre that runs after the email is parsed, but before any changes are made.
|
530 |
+
* Fixed improper decoding of encoded headers when multiple 'encoded-words' are present.
|
531 |
+
* Fix to allow multiple #img# reference to the same image.
|
532 |
+
* The default video 1 template is now 'vshortcode'
|
533 |
+
* New option: Text fallback. Falls back to plain if html is blank and vice versa.
|
534 |
+
* Support removing featured image from html
|
535 |
+
|
536 |
+
= 1.8.1 (beta 2) =
|
537 |
+
|
538 |
+
= 1.8.0 (beta 1) =
|
539 |
+
|
540 |
+
= 1.7.32 (2016-04-15) =
|
541 |
+
* Deal with incorrectly formatted date headers
|
542 |
+
|
543 |
+
= 1.7.31 (2016-03-05) =
|
544 |
+
* Suppress warning message when accessing POP and there are no messages.
|
545 |
+
|
546 |
+
= 1.7.30 (2016-02-16) =
|
547 |
+
* prevent auto-linkifying inside shortcodes
|
548 |
+
|
549 |
+
= 1.7.29 (2016-02-15) =
|
550 |
+
* fixed email header parsing bug in PHP7
|
551 |
+
|
552 |
+
= 1.7.28 (2016-02-09) =
|
553 |
+
* better tag detection with html
|
554 |
+
* Don't skip image processing when Include Featured Image in Post is set to "No" and the Preferred Text Type is HTML.
|
555 |
+
* Use the blog name as the "from" text in any emails.
|
556 |
+
* New filter: postie_filter_email3
|
557 |
+
* Email headers now available in postie_post_before filter
|
558 |
+
* When looking for a parent post to add comments ensure the comments are open
|
559 |
+
|
560 |
+
= 1.7.27 (2015-12-28) =
|
561 |
+
* Fix category match settings not saving
|
562 |
+
|
563 |
+
= 1.7.26 (2015-12-28) =
|
564 |
+
* Detect oEmbedable links and don't linkify
|
565 |
+
* New filter postie_preconnect. http://postieplugin.com/filter-postie_preconnect/
|
566 |
+
|
567 |
+
= 1.7.25 (2015-12-15) =
|
568 |
+
* Fix settings page for new category matching flavors
|
569 |
+
|
570 |
+
= 1.7.24 (2015-12-15) =
|
571 |
+
* Don't process youtube and vimeo links specially.
|
572 |
+
* New setting to turn off category matching flavors
|
573 |
+
|
574 |
+
= 1.7.23 (2015-12-09) =
|
575 |
+
* Fix bug where emails inside shortcodes were being linkified
|
576 |
+
* Lookup categories by slug as well as by name
|
577 |
+
* WordPress 4.4 testing
|
578 |
+
* Added new video template for using video shortcode
|
579 |
+
* Added new template variable - FILETYPE which is the file extension
|
580 |
+
|
581 |
+
= 1.7.22 (2015-11-09) =
|
582 |
+
* Update admin screen to match current WP style
|
583 |
+
* Remove dependence on simple tabs jQuery-UI library and use WP admin tab style
|
584 |
+
* Remove email password from logging
|
585 |
+
|
586 |
+
= 1.7.21 (2015-10-27) =
|
587 |
+
* Refix bug where "Ignore mail state" setting was being ignored
|
588 |
+
|
589 |
+
= 1.7.20 (2015-10-26) =
|
590 |
+
* Fixed bug where debug info was not being displayed according to settings
|
591 |
+
* Fix bug where "Ignore mail state" setting was being ignored
|
592 |
+
* Fix bug where empty post was being generated when already read mail was in the inbox and "Ignore mail state" was "Yes"
|
593 |
+
* Added postie_session_start and postie_session_end actions
|
594 |
+
|
595 |
+
= 1.7.19 (2015-10-13) =
|
596 |
+
* Fixed bug where allowed mime types was not being respected.
|
597 |
+
|
598 |
+
= 1.7.18 (2015-10-13) =
|
599 |
+
* Fix bug where linkify was messing up CID reference
|
600 |
+
|
601 |
+
= 1.7.17 (2015-10-12) =
|
602 |
+
* New action, postie_log_error
|
603 |
+
* New action, postie_log_debug
|
604 |
+
* New feature to turn off all logging
|
605 |
+
* Only errors logged by default
|
606 |
+
|
607 |
+
= 1.7.16 (2015-10-08) =
|
608 |
+
* Ensure comments are valid html after striping if preferred text type is html
|
609 |
+
* Add setting to control comment content (strip_reply)
|
610 |
+
|
611 |
+
= 1.7.15 (2015-10-02) =
|
612 |
+
* Completely replace linkify logic
|
613 |
+
* Support youtu.be links
|
614 |
+
|
615 |
+
= 1.7.14 (2015-10-01) =
|
616 |
+
* Fix bug in new linkify logic
|
617 |
+
|
618 |
+
= 1.7.13 (2015-10-01) =
|
619 |
+
* Fix support for "Automatically convert urls to links" with html
|
620 |
+
* Fix support for "date" tag with html
|
621 |
+
* Prep for upcoming translation
|
622 |
+
|
623 |
+
= 1.7.12 (2015-09-25) =
|
624 |
+
* Add new setting to ignore email read/unread state
|
625 |
+
* Fix support for "tag" tags in html and plain messages
|
626 |
+
|
627 |
+
= 1.7.11 (2015-09-18) =
|
628 |
+
* Add FILEID to image and video templates
|
629 |
+
|
630 |
+
= 1.7.10 (2015-09-16) =
|
631 |
+
* added 15 and 30 second cron schedules
|
632 |
+
|
633 |
+
= 1.7.9 (2015-09-14) =
|
634 |
+
* revert tags logic as html version was messing up the content.
|
635 |
+
* revert video linkify logic as html version was messing up the content.
|
636 |
+
* revert linkify logic as html version was messing up the content.
|
637 |
+
|
638 |
+
= 1.7.8 (2015-09-08) =
|
639 |
+
* Remove mbstring admin message. Added fallback if mbstring is not installed
|
640 |
+
* More explanation for signature regex
|
641 |
+
* Add 1 minute schedule to supplement new external cron recommendation
|
642 |
+
* Updates to support upcoming Language Packs feature for plugins
|
643 |
+
* Moved important warning to admin notices
|
644 |
+
* New filter postie_category_default
|
645 |
+
|
646 |
+
= 1.7.7 (2015-08-24) =
|
647 |
+
* Fixed bug where "To" and "Reply-To" emails were not parsed correctly for postie_filter_email2 filter
|
648 |
+
|
649 |
+
= 1.7.6 (2015-08-13) =
|
650 |
+
* Added setting to control whether the featured image is included in the post or not.
|
651 |
+
* Added 2 new filters, postie_comment_before and postie_comment_after
|
652 |
+
|
653 |
+
= 1.7.5 (2015-08-06) =
|
654 |
+
* If featured image is enabled, the featured image will no longer appear in the post.
|
655 |
+
|
656 |
+
= 1.7.4 (2015-07-30) =
|
657 |
+
* Added additional output if wp_insert_post() fails
|
658 |
+
* Fixed image upload failure when image filename doesn't have an extension
|
659 |
+
|
660 |
+
= 1.7.3 (2015-07-22) =
|
661 |
+
* Fix parameter order bug in postie_gallery filter
|
662 |
+
|
663 |
+
= 1.7.2 (2015-07-19) =
|
664 |
+
* Add filter postie_gallery when generating gallery shortcode
|
665 |
+
|
666 |
+
= 1.7.1 (2015-07-16) =
|
667 |
+
* Fixed issue where multiple custom taxonomy terms were not correctly being saved
|
668 |
+
|
669 |
+
= 1.7.0 (2015-07-07) =
|
670 |
+
* Fixed attachment uploading bug when the type & extension weren't available.
|
671 |
+
* Clarified "Filter newlines" setting description.
|
672 |
+
* Better support for Exchange 2010+ thanks to Andrew Chaplin
|
673 |
+
* New action hook - postie_file_added
|
674 |
+
|
675 |
+
= 1.6.19 (2015-05-04) =
|
676 |
+
* Reduced the number of messages sent to the log for successful runs
|
677 |
+
* Rename the disable_kses_content() function to postie_disable_kses_content() to fix a conflict with DAP WP LiveLinks Plugin
|
678 |
+
|
679 |
+
= 1.6.18 (2015-04-27) =
|
680 |
+
* Fixed a bug that prevented Postie from detecting categories with an ampersand in them.
|
681 |
+
* Added support for "future" post status
|
682 |
+
* Move "Use shortcode for embedding video" setting to Video tab and clarified usage.
|
683 |
+
* Added setting to specify the link type used with galleries
|
684 |
+
|
685 |
+
= 1.6.17 (2015-03-28) =
|
686 |
+
* Add a setting to attempt a user login based on the from address of the email if a matching Wordpress user exists.
|
687 |
+
|
688 |
+
= 1.6.16 (2015-03-17) =
|
689 |
+
* If using the #img# feature and you supply a caption it will be added to the attachment's alt text.
|
690 |
+
|
691 |
+
= 1.6.15 (2015-03-04) =
|
692 |
+
* Remove "Wrap content in pre tags" option as it was defaulted to "yes" but never correctly applied.
|
693 |
+
* Allow time correction values of 0.5
|
694 |
+
* New setting: "Treat Replies As" allows user to specify if replies should be processed as comments or new posts.
|
695 |
+
* Fix bug in reply detection
|
696 |
+
* Fix bug when saving custom image field and there was only 1 image
|
697 |
+
|
698 |
+
= 1.6.14 (2015-02-26) =
|
699 |
+
* Fully support custom taxonomies
|
700 |
+
|
701 |
+
= 1.6.13 (2015-02-25) =
|
702 |
+
* Add some additional checks and error messages to postie_media_handle_upload for cases where the TMP directory isn't writable.
|
703 |
+
* Any user with "Roles that can post" can now be the default poster.
|
704 |
+
|
705 |
+
= 1.6.12 (2015-02-09) =
|
706 |
+
* Fix confirmation emails that were always sending to administrator.
|
707 |
+
* Fix regression in 1.6.11 which prevented attachments from being displayed in some cases.
|
708 |
+
|
709 |
+
= 1.6.11 (2015-01-30) =
|
710 |
+
* Call wp_set_current_user() so that other WP functions that depend on the current user work correctly. (custom taxonomy)
|
711 |
+
* Only do image template processing if the preferred text type is plain
|
712 |
+
* Removed http_response_code() call since it is only supported by PHP 5.4 or newer.
|
713 |
+
|
714 |
+
= 1.6.10 (2015-1-2) =
|
715 |
+
* Testing against 4.1
|
716 |
+
* New icon in admin
|
717 |
+
|
718 |
+
= 1.6.9 (2014.12.1) =
|
719 |
+
* Post status list is now read from WordPress settings, rather than being a hard-coded list.
|
720 |
+
* Settings look & feel matching WP default style.
|
721 |
+
* Testing against WP 4.0.1
|
722 |
+
|
723 |
+
= 1.6.8 (2014.11.14) =
|
724 |
+
* Fixed bug where the #img tag was being used as the subject if it is the very first line in the email.
|
725 |
+
* Fixed bug where the allow subject in body setting was being ignored.
|
726 |
+
|
727 |
+
= 1.6.7 (2014.11.05) =
|
728 |
+
* Fixed bug where base64 text with utf-8 charset was trying to convert encoding to utf-8
|
729 |
+
|
730 |
+
= 1.6.6 (2014.10.29) =
|
731 |
+
* Add additional debugging to isValidSmtpServer
|
732 |
+
* Add Japanese translation
|
733 |
+
* Fixed bug where a subject present in the body is not recognized
|
734 |
+
|
735 |
+
= 1.6.5 (2014.10.22) =
|
736 |
+
* Fixed charset encoding bug when there wasn't a content-transfer-encoding header
|
737 |
+
* Upgraded simple_html_dom
|
738 |
+
|
739 |
+
= 1.6.4 (2014.10.21) =
|
740 |
+
* Provide post url in success email
|
741 |
+
|
742 |
+
= 1.6.3 (2014.10.03) =
|
743 |
+
* Added postie_filter_email2 filter which includes To and Reply-To headers
|
744 |
+
* Added postie_author filter
|
745 |
+
* Revised help/support page
|
746 |
+
|
747 |
+
= 1.6.2 (2014.09.22) =
|
748 |
+
* Moved FAQ and Help to PostiePlugin.com
|
749 |
+
* Fixed file type issue with wp_handle_upload_prefilter()
|
750 |
+
* Fixed cron issue
|
751 |
+
|
752 |
+
= 1.6.1 (2014.09.19) =
|
753 |
+
* Allow negative time corrections
|
754 |
+
* Fix links to settings page
|
755 |
+
* Misc UI updates
|
756 |
+
|
757 |
+
= 1.6.0 (2014.09.18) =
|
758 |
+
* Updated remote cron url to be more compatible with Wordpress
|
759 |
+
* The Postie menu has been moved out of the Settings menu to the top level
|
760 |
+
* Tested with Wordpress 4.0
|
761 |
+
|
762 |
+
= 1.5.24 (2014.08.12) =
|
763 |
+
* Fix attachment renaming bug
|
764 |
+
* Test with Wordpress 3.9.2
|
765 |
+
|
766 |
+
= 1.5.23 (2014.08.11) =
|
767 |
+
* Remove PEAR/PEAR5 dependency which was causing errors on some systems
|
768 |
+
* Call wp_handle_upload_prefilter before adding images to WP
|
769 |
+
* Temporary new post is now draft status
|
770 |
+
|
771 |
+
= 1.5.22 (2014.06.10) =
|
772 |
+
* Fix missing attachments for html messages
|
773 |
+
|
774 |
+
= 1.5.21 (2014.06.06) =
|
775 |
+
* Fixed spelling errors
|
776 |
+
* Added more debugging around image sizes
|
777 |
+
* Clarified some image options on settings page
|
778 |
+
* Removed call to wp_set_post_terms()
|
779 |
+
|
780 |
+
= 1.5.20 (2014.05.29) =
|
781 |
+
* Added logic to prevent appending images when preferred text type is HTML.
|
782 |
+
* Improved help text on several options and clarified options.
|
783 |
+
* Additional logging around attachment uploading
|
784 |
+
|
785 |
+
= 1.5.19 (2014.04.30) =
|
786 |
+
* Updated image preview to recognize all variables.
|
787 |
+
* Updated "wordpress_default" images template to match WP 3.8.
|
788 |
+
* Clarified logging messages for IMAP/IMAP-SSL/POP3-SSL
|
789 |
+
* Removed POSTTITLE from templates since we don't know the actual title at template time.
|
790 |
+
* Verified WordPress 3.9 compatibility
|
791 |
+
|
792 |
+
= 1.5.18 (2014.01.12) =
|
793 |
+
* Reverted text encoding change in 1.5.17.
|
794 |
+
|
795 |
+
= 1.5.17 (2013.12.19) =
|
796 |
+
* Fixed date calculation in test screen.
|
797 |
+
* Fixed text encoding issues for systems with PHP 5.4
|
798 |
+
* Updated CSS to better match WordPress 3.8 styles.
|
799 |
+
* Removed reference to pluggable.php to allow other plugins to plug these functions.
|
800 |
+
* Verified compatibility with WP 3.8
|
801 |
+
|
802 |
+
= 1.5.16 (2013.09.15) =
|
803 |
+
* Fixed date detection bug in forwarded messages.
|
804 |
+
* Possible fix for blank screen issue (flush buffers rather than check for sent headers).
|
805 |
+
* Fixed images showing up in excerpts when not specified.
|
806 |
+
* Fixed bug where time offset was applied twice.
|
807 |
+
* Fixed bug where excerpts where not getting the newline settings applied.
|
808 |
+
* Fixed bug where the attachment template was not getting set on new installs.
|
809 |
+
* Fixed bug where mp3 files were causing failures when getting meta-data.
|
810 |
+
* Verified compatibility with WP 3.6 and 3.6.1
|
811 |
+
|
812 |
+
= 1.5.15 (2013.07.01) =
|
813 |
+
* Added message warning that filter 'postie_post' has been deprecated.
|
814 |
+
* Fixed bug where a category was detected if there happened to be 2 dash (-) characters and a number was the first thing after the first dash.
|
815 |
+
* Simplified header decoding for non-ASCII languages
|
816 |
+
|
817 |
+
= 1.5.14 (2013.06.21) =
|
818 |
+
* Added PHP version to debug output
|
819 |
+
* Added PHP version check when disabling GSSAPI
|
820 |
+
* Added new filter "postie_post_before" to replace "postie_post"
|
821 |
+
* Added new filter "postie_post_after"
|
822 |
+
|
823 |
+
= 1.5.13 (2013.06.18) =
|
824 |
+
* Added more robust charset conversion to deal with malformed emails.
|
825 |
+
* Ensure the default title is used when category etc parsing results in blank title
|
826 |
+
* Consolidate procedure for locating wp-config.php
|
827 |
+
* Additional debug output.
|
828 |
+
* Fixed a bug where the default author was being used even though the email had a valid author.
|
829 |
+
* Added feature to disable IMAP authentication with GSSAPI or NTLM to improve MS Exchange compatibility.
|
830 |
+
|
831 |
+
= 1.5.12 (2013.06.08) =
|
832 |
+
* Added full paths to includes in config_form due to some hosts having include_path set in a way that breaks Postie.
|
833 |
+
* Added some checks for emails that aren't correctly formatted (AirMail/WinLink)
|
834 |
+
* Consolidated environmental checks
|
835 |
+
* Added logic for Debian location of wp-config.php
|
836 |
+
|
837 |
+
= 1.5.11 (2013.06.02) =
|
838 |
+
* Moved test files out of main repository to decrease plugin size
|
839 |
+
* Fixed issue with readme file (Wordpress readme validator moved)
|
840 |
+
|
841 |
+
= 1.5.10 (2013.05.31) =
|
842 |
+
* Added template field descriptions to image tab.
|
843 |
+
* Fixed a bug where caption placeholder in templates wasn't being properly set.
|
844 |
+
* Additional test to see if wp-config.php can be found.
|
845 |
+
|
846 |
+
= 1.5.9 (2013.05.18) =
|
847 |
+
* Fixed a bug where valid users can post via email even though they don't have role permissions.
|
848 |
+
* Fixed a bug where nice_name was being used in the settings screen even though user_login was needed.
|
849 |
+
* Fixed the error message when the default poster is not valid.
|
850 |
+
* Fixed bug where gallery short tag was getting set when non-image attachments were found.
|
851 |
+
|
852 |
+
= 1.5.8 (2013.05.14) =
|
853 |
+
* Added additional default signature patterns.
|
854 |
+
* Fixed a bug where attachments were not showing up if :start or :end were used.
|
855 |
+
|
856 |
+
= 1.5.7 (2013.05.09) =
|
857 |
+
* Fixed bug where the admin user was not getting set as author in some cases.
|
858 |
+
* Fixed bug where file names were not being sanitized.
|
859 |
+
* Added setting to disable thumbnail generation.
|
860 |
+
* Updated the default signature patterns and help text.
|
861 |
+
|
862 |
+
= 1.5.6 (2013-05-07) =
|
863 |
+
* Fixed bug where default post format was empty when the theme didn't support any formats.
|
864 |
+
* Removed all hard coded references to wp-content.
|
865 |
+
* Fixed bug where caption wasn't being filled out in templates.
|
866 |
+
* Updated direct DB access to use standard methods.
|
867 |
+
* Added attachment template for non-audio/image/video attachments.
|
868 |
+
* Added additional checks to the test screen.
|
869 |
+
* Added new template variable {ICON}
|
870 |
+
|
871 |
+
= 1.5.5 (2013.05.02) =
|
872 |
+
* Added ability to run a manual check with debugging output.
|
873 |
+
* Added support for default post type.
|
874 |
+
* Added version number to settings page.
|
875 |
+
* Changed Admin User to Default Poster, clarified help text and changed input to combo box of valid values.
|
876 |
+
* Fixed bug where commas (,) were not allowed in signature detection.
|
877 |
+
* Fixed some CSS issues on admin page.
|
878 |
+
|
879 |
+
= 1.5.4 (2013.05.01) =
|
880 |
+
* Added support for default post format
|
881 |
+
* Fixed bug where replies were getting attached to the wrong post
|
882 |
+
* Fixed bug where tags were not being detected correctly in html emails
|
883 |
+
* Fixed bug in reply detection
|
884 |
+
|
885 |
+
= 1.5.3 (2013.04.13) =
|
886 |
+
* Added support for Featured Images
|
887 |
+
* Added support for Use Transport Layer Security (TLS)
|
888 |
+
* Updated postie_filter_email filter to get unprocessed email address
|
889 |
+
|
890 |
+
= 1.5.2 (2013.04.12) =
|
891 |
+
* Fixed bug in post type/format detection when no valid post type/format was found
|
892 |
+
* Workaround for WP bug when POP3 account has no waiting messages
|
893 |
+
* Fixed bug where cron was running postie_check on every page load
|
894 |
+
|
895 |
+
= 1.5.1 (2013.04.10) =
|
896 |
+
* Turned on POP3 debug logging if POSTIE_DEBUG is TRUE.
|
897 |
+
* Disable autocomplete on some setup fields
|
898 |
+
* Fixed bug where confirmation emails were not being sent to authors
|
899 |
+
* Fixed bug where post were not saved if the default admin user didn't exist and the from user was not a WordPress user
|
900 |
+
|
901 |
+
= 1.5.0 (2013.04.05) =
|
902 |
+
* Apply Postie Time Correction to date: command
|
903 |
+
* Add support for Post Formats
|
904 |
+
* Add support for Post Status
|
905 |
+
* Add warning if Admin username is invalid
|
906 |
+
* Fixed bug where date: was not always being detected in html emails
|
907 |
+
* Improved handling of attachments and mapping to file extensions for template selection
|
908 |
+
* Video templates now include scale="tofit"
|
909 |
+
* Add support for older png mime type
|
910 |
+
* New filter postie_filter_email. Used to map "from" to any other email. Allows custom user mapping.
|
911 |
+
|
912 |
+
|
913 |
+
= 1.4.40 (2013.03.18) =
|
914 |
+
* Fixed bug where categories specified by ID were not being correctly identified
|
915 |
+
|
916 |
+
= 1.4.39 (2013.03.14) =
|
917 |
+
* Fixed bug where Postie supplied schedules were not always being correctly added to the cron
|
918 |
+
|
919 |
+
= 1.4.38 (2013.03.12) =
|
920 |
+
* Improved POP3 configuration test
|
921 |
+
* Fixed bug where :start and :end were removing commands like tags: and date: before they got a chance to be processed
|
922 |
+
|
923 |
+
= 1.4.37 (2013.03.11) =
|
924 |
+
* Fixed bug in tag handling
|
925 |
+
* Fixed bug in category detection
|
926 |
+
* Worked around a bug in WordPress that was mangling filenames that are not in ASCII, i.e. Arabic, Hebrew, Cyrillic, etc.
|
927 |
+
|
928 |
+
= 1.4.36 (2013.03.07) =
|
929 |
+
* Removed some debugging code from filters and hooks
|
930 |
+
* Fixed bug where the date command was being ignored
|
931 |
+
* Added 'quicktime' as a default type for the video1 template
|
932 |
+
|
933 |
+
= 1.4.35 (2013.02.22) =
|
934 |
+
* Consolidated logic for load configuration settings. Fixes bug where new settings were not having their defaults set properly.
|
935 |
+
* Fixed bug where attachment file name was not being correctly detected.
|
936 |
+
|
937 |
+
= 1.4.34 (2013.02.07) =
|
938 |
+
* Fixed bug in new category logic
|
939 |
+
|
940 |
+
= 1.4.33 (2013.02.05) =
|
941 |
+
* Fixed bug where non-category taxonomy was being selected as the post category.
|
942 |
+
* Added option to force categories to match exactly.
|
943 |
+
* Added logic to skip text attachments named "ATT00001.txt" where the numbers can be any sequence. This
|
944 |
+
improves the previous fix by detecting all attachments added, not just the first one.
|
945 |
+
|
946 |
+
= 1.4.32 (2013.01.29) =
|
947 |
+
* Fixed bug in detecting need for imap extension.
|
948 |
+
* Added additional selections for "Maximum number of emails to process"
|
949 |
+
* Added logic to skip text attachments named "ATT00001.txt" which are added by MS Exchange virus scanning.
|
950 |
+
* Added option to check for email every 5 minutes.
|
951 |
+
|
952 |
+
= 1.4.31 (2013.01.25) =
|
953 |
+
* Enhanced category detection to be compatible with Polylang plugin.
|
954 |
+
* Enhanced prerequisite detection.
|
955 |
+
* Now using wp_mail() instead of mail()
|
956 |
+
* WordPress 3.5.1 compatibility
|
957 |
+
|
958 |
+
= 1.4.30 (2013.01.22) =
|
959 |
+
* Fixed bug that caused activation to fail or show a blank page.
|
960 |
+
* Fixed bug where WP media upload rejects a file.
|
961 |
+
* Added a check for mbstring.
|
962 |
+
* Fixed bug when attachment names were only supplied via d_parameters.
|
963 |
+
|
964 |
+
= 1.4.29 (2013.01.19) =
|
965 |
+
* Fixed bug where manually running Postie worked, but calling get_mail.php directly did not.
|
966 |
+
|
967 |
+
= 1.4.28 (2013.01.18) =
|
968 |
+
* Fixed bug in "reset settings to default" where the protocol wasn't being retained.
|
969 |
+
* More cleanup and clarification on settings screen.
|
970 |
+
* Fixed bug where excerpts weren't getting set if "Filter newlines" was set to "Yes"
|
971 |
+
* Removed logic to increase memory size.
|
972 |
+
|
973 |
+
= 1.4.27 (2013.01.17) =
|
974 |
+
* Updated sample plugin for extending Postie.
|
975 |
+
* Updated documentation for template variables.
|
976 |
+
* Fixed a bug where text/plain attachments were not being treated as attachments.
|
977 |
+
* Look for and include filterPostie.php in wp-content if it exists. (used for custom filters so they don't get deleted on upgrades)
|
978 |
+
* Cleanup of settings screen layout.
|
979 |
+
* Added additional error logging for mail connections.
|
980 |
+
|
981 |
+
= 1.4.26 (2013.01.15) =
|
982 |
+
* Fixed a bug where signatures were not removed in html emails.
|
983 |
+
* Added support for text attachments such as text/calendar.
|
984 |
+
|
985 |
+
= 1.4.25 (2013.01.15) =
|
986 |
+
* Fixed a bug where newlines were being removed erroneously.
|
987 |
+
|
988 |
+
= 1.4.24 (2013.01.13) =
|
989 |
+
* Fixed a bug where the original attachment name wasn't being used.
|
990 |
+
* Fixed a bug where the #eimg# tags in the excerpt were not getting expanded.
|
991 |
+
|
992 |
+
= 1.4.23 (2013.01.10) =
|
993 |
+
* Fixed a bug with embedded CID referenced images.
|
994 |
+
|
995 |
+
= 1.4.22 (2013.01.10) =
|
996 |
+
* Fixed a bug where the subject was not being properly decoded when Q-encoding was used.
|
997 |
+
* Fixed a bug in #img# caption detection.
|
998 |
+
* Fixed a bug where the tag command was picking up too much text.
|
999 |
+
* Enhanced the date command to allow times as well.
|
1000 |
+
|
1001 |
+
= 1.4.21 (2013.01.09) =
|
1002 |
+
* Removed all Call-time pass-by-references to support PHP 5.4
|
1003 |
+
|
1004 |
+
= 1.4.20 (2013.01.08) =
|
1005 |
+
* Added Date feature. You can now specify a specific publication date.
|
1006 |
+
* Fixed a bug with embeded youtube/vimeo links when shortcodes are turned off
|
1007 |
+
|
1008 |
+
= 1.4.19 (2013.01.07) =
|
1009 |
+
* Fixed a bug that prevented the settings from being saved
|
1010 |
+
|
1011 |
+
= 1.4.18 (2013.01.06) =
|
1012 |
+
* Fixed a bug where linkifying was doing too much.
|
1013 |
+
* Updated lots of method names in preparation for some significant structural changes.
|
1014 |
+
|
1015 |
+
= 1.4.17 (2013.01.03) =
|
1016 |
+
* Fixed a bug where non image/video attachments were not getting added to the post.
|
1017 |
+
|
1018 |
+
= 1.4.16 (2013.01.03) =
|
1019 |
+
* Fixed a bug where an extra div tag was getting added.
|
1020 |
+
* Fixed a bug when linkifying URLs.
|
1021 |
+
* Fixed a bug where inline images were not being detected.
|
1022 |
+
|
1023 |
+
= 1.4.15 (2013.01.02) =
|
1024 |
+
* Fixed a bug when a category is specified with [] and a colon (:) is in the subject, but not specifying a category
|
1025 |
+
|
1026 |
+
= 1.4.14 (2012.12.29) =
|
1027 |
+
* Fixed a bug where attached images were not being detected properly causing a "File is empty. Please upload something more substantial." error
|
1028 |
+
* Tweaked some CSS.
|
1029 |
+
|
1030 |
+
= 1.4.13 (2012.12.26) =
|
1031 |
+
* Fixed bug that was truncating content at the first html encoded character.
|
1032 |
+
|
1033 |
+
= 1.4.12 (2012.12.17) =
|
1034 |
+
* Added feature to limit the number of emails processed
|
1035 |
+
* Fixed bug where #img# was not processing the caption correctly
|
1036 |
+
|
1037 |
+
= 1.4.11.(2012.12.14) =
|
1038 |
+
* Fixed bug where having a colon in the subject caused the subject to get truncated
|
1039 |
+
* Added donation link to admin screen
|
1040 |
+
* Fixed bug where #img# captions with double-byte characters were not working
|
1041 |
+
* Fixed bug where default settings were corrupt
|
1042 |
+
* Fixed several bugs in tag detection logic
|
1043 |
+
* Fixed bug where non-base64 and non-quoted-printable sections were not converted to utf-8
|
1044 |
+
* Fixed bug where the end filter wasn't removed from the post
|
1045 |
+
* Add additional logging to attachment upload process
|
1046 |
+
* Changes to support WP 3.5
|
1047 |
+
|
1048 |
+
= 1.4.10 (2012.12.11) =
|
1049 |
+
* Fixed warning when there is no subject
|
1050 |
+
* Removed all script and style tags from HTML content in place of XSS warning
|
1051 |
+
* Removed XSS warning
|
1052 |
+
* Fixed bug where post type was not being detected if only case is different
|
1053 |
+
* Fixed bug with custom post type and leading spaces in the subject
|
1054 |
+
* Fixed bug where custom fields were not being populated for images
|
1055 |
+
|
1056 |
+
= 1.4.9 (2012.12.10) =
|
1057 |
+
* Fixed bug where date, author, etc didn't get set.
|
1058 |
+
* Fixed bug where Postie was treating attached images as strings
|
1059 |
+
* Fixed bug where inline images were not being attached correctly
|
1060 |
+
* Fixed bug where the subject was not being decoded correctly if the charset was different from the system charset
|
1061 |
+
* Fixed bug where base64 strings were being double decoded.
|
1062 |
+
|
1063 |
+
= 1.4.8 (2012.12.09) =
|
1064 |
+
* Fixed collisions with simple_html_dom
|
1065 |
+
* Fixed bug when trying to get file name from MIME part
|
1066 |
+
* Fixed bug causing Cannot modify header information warning
|
1067 |
+
|
1068 |
+
= 1.4.7 (2012.12.07) =
|
1069 |
+
* Fixed bug in cron setup that was preventing Weekly, twice an hour and every ten minute schedules from running.
|
1070 |
+
|
1071 |
+
= 1.4.6 (2012.12.06) =
|
1072 |
+
* Changed XSS check to only emit warning until a better solution can be developed
|
1073 |
+
* Fixed bug where authorized addresses were being checked with case sensitive rather than insensitive.
|
1074 |
+
* Started using PHP Simple HTML DOM Parser http://simplehtmldom.sourceforge.net/
|
1075 |
+
* Started process of logging all error messages to the log as well as the page (where appropriate)
|
1076 |
+
* Fixed bug where "Preferred Text Type" was not displaying the saved value in settings page.
|
1077 |
+
* Fixed bug where Postie was wiping out all other cron schedules.
|
1078 |
+
* Fixed a number of missing internationalization strings (no translations added however)
|
1079 |
+
* Added documentation for the comments: command
|
1080 |
+
* Added feature to specify a custom post type in the subject line. Thanks to Raam Dev http://raamdev.com for his code.
|
1081 |
+
* Removed a number of deprecated WordPress functions.
|
1082 |
+
* Fixed numerous warning messages
|
1083 |
+
* Added phpUnit tests
|
1084 |
+
* Allow wp-config.php to be in alternate location as described here: http://codex.wordpress.org/Hardening_WordPress#Securing_wp-config.php
|
1085 |
+
* Fixed a bug that didn't replace the #img# tags correctly.
|
1086 |
+
|
1087 |
+
= 1.4.5 (2012.11.14) =
|
1088 |
+
* Fixed bug in XSS attack vulnerability code. Thanks to R Reid http://blog.strictly-software.com/2012/03/fixing-postie-plugin-for-wordpress-to.html
|
1089 |
+
* Fixed bug where emails with multiple categories has the incorrect title
|
1090 |
+
* Fixed bugs where PHP setting were not being changed correctly - thanks to Peter Chester http://tri.be/author/peter/
|
1091 |
+
* New maintainer
|
1092 |
+
|
1093 |
+
= 1.4.4 (2012.08.10) =
|
1094 |
+
* Fixed possible XSS attack vulnerability
|
1095 |
+
|
1096 |
+
= 1.4.3 =
|
1097 |
+
* Removed get_user_by function to make compatible with wp 3.3 - now requires
|
1098 |
+
2.8+
|
1099 |
+
|
1100 |
+
= 1.4.2 (2011.01.29) =
|
1101 |
+
* Fixed mailto link bug (thanks to Jason McNeil)
|
1102 |
+
* Fixed bug with attachments with non-ascii characters in filename (thanks to
|
1103 |
+
mtakada)
|
1104 |
+
* checking for socket errors when checking mail (thanks elysian)
|
1105 |
+
* fixed issue with multiple files not being inserted correctly
|
1106 |
+
* Added support for ISO 8859-15 (thanks paolog)
|
1107 |
+
* fixed sql injection problem (thanks Jose P. Espinal for pointing it out)
|
1108 |
+
* Fixed namespace clashing for get_config function
|
1109 |
+
|
1110 |
+
= 1.4.1 (2010.06.18) =
|
1111 |
+
* Images appear in correct order when using images append = false
|
1112 |
+
* Fixed formatting problem with wordpress_default image template
|
1113 |
+
* Captions now correctly work with wordpress >3.0 and <3.0
|
1114 |
+
* Fixed auto_gallery feature
|
1115 |
+
* Default port is now 110
|
1116 |
+
* Added more configuration tests
|
1117 |
+
* Added background color to settings page to make input boxes more visible
|
1118 |
+
* Removed extra quote character in captions from #img# placeholders (thanks
|
1119 |
+
SteelD for pointing out the error)
|
1120 |
+
* Added support for big5 and gb-1232 encodings (thanks Chow)
|
1121 |
+
* Fixed issue with configurations items stored as arrays, which caused
|
1122 |
+
problems with validating authorized addresses
|
1123 |
+
* Fixed bug with replaceImageCIDs function
|
1124 |
+
* On hosts which allow it, we set max execution time to 300 seconds and
|
1125 |
+
memory_limit to infinity to allow processing of large e-mails (especially
|
1126 |
+
with large attachments)
|
1127 |
+
* Images are sorted in order of filename before inserting into post
|
1128 |
+
|
1129 |
+
= 1.4 (2010.04.25) =
|
1130 |
+
* Now using wordpress settings api (thanks for much help from Andrew S)
|
1131 |
+
* Cronless postie is now integrated with postie instead of a separate plugin
|
1132 |
+
* filterPostie.php moved to filterPostie.php.sample
|
1133 |
+
* Can use fetchmails.php to fetch mail from multiple mailboxes
|
1134 |
+
* Fixed problem with embedding youtube videos from html (richtext) e-mail
|
1135 |
+
* Added support for embedding vimeo vidoes
|
1136 |
+
* Fixed problem with selecting "none" as icon set for attachments (thanks
|
1137 |
+
tonyvitali)
|
1138 |
+
* Fixed problems with cronless postie settings
|
1139 |
+
* Fixed bug with embedding youtube and vimeo videos whose ID contains a -
|
1140 |
+
(thanks Jim Kehoe)
|
1141 |
+
* Post_author is now included with attachments
|
1142 |
+
* fixed confirmation_email settings so that now you can select between sender,
|
1143 |
+
admin, both, or none (thanks to redsalmon for pointing out bug)
|
1144 |
+
* Added option to automatically insert galleries
|
1145 |
+
* Updated FAQ and readme
|
1146 |
+
|
1147 |
+
= 1.3.4 (2009.10.05) =
|
1148 |
+
* Fixed problem with images not posting under cron
|
1149 |
+
* Fixed issue with disappearing password
|
1150 |
+
|
1151 |
+
= 1.3.3 (2009.09.11) =
|
1152 |
+
* Fixed problem with double titles
|
1153 |
+
* Fixed error in wp-mu
|
1154 |
+
* Cronless postie now correctly updates when changing the setting in the
|
1155 |
+
postie settings
|
1156 |
+
* Small fix in handling of names of attachments (thanks to Teejot)
|
1157 |
+
* Fixed delay option (thanks to redbrandonk)
|
1158 |
+
* Cronless option value is now correctly deleted when deactivating the
|
1159 |
+
cronless postie plugin
|
1160 |
+
|
1161 |
+
= 1.3.2 (2009.08.27) =
|
1162 |
+
* tags are now always an array, even if no default tags are set
|
1163 |
+
* Subject is showing up again if you do not have the IMAP extension
|
1164 |
+
installed
|
1165 |
+
* More information on the IMAP extension and more user-friendly
|
1166 |
+
installation
|
1167 |
+
* Fixed problems with smtp server settings in 1.3.1
|
1168 |
+
* Added russian translation (thanks to fatcow.com)
|
1169 |
+
|
1170 |
+
= 1.3.1 (2009.08.24) =
|
1171 |
+
* Changed GetContent filter to postie_post
|
1172 |
+
* Added database upgrade hook on activation
|
1173 |
+
* Fixed bug where content would be empty if trying to remove signature,
|
1174 |
+
and signature list was emtpy
|
1175 |
+
* Updated FAQ and readme
|
1176 |
+
|
1177 |
+
= 1.3.0 (2009.08.14) =
|
1178 |
+
* Features
|
1179 |
+
* Added mpeg4 to default list of videotypes
|
1180 |
+
* Added support for KOI8-R character set (cyrillic)
|
1181 |
+
* Added support for iso-8859-2 character set (eastern european)
|
1182 |
+
* Added option to include custom icons for attachments
|
1183 |
+
* Added option to send confirmation message to sender
|
1184 |
+
* Enhanced e-mails for unauthorized users
|
1185 |
+
* Added option to send unauthorized e-mail back to sender
|
1186 |
+
* Added option to only allow e-mails from a specified list of smtp
|
1187 |
+
servers
|
1188 |
+
* Added option to use shortcode for embedding videos (works with the
|
1189 |
+
videos plugin http://www.daburna.de/download/videos-plugin.zip
|
1190 |
+
* Better handling of comment authors (thanks to Petter for suggestion)
|
1191 |
+
* Simplified message options (now includes an advanced options section)
|
1192 |
+
* Added filter ability for post content
|
1193 |
+
* Bug fixes
|
1194 |
+
* No longer including wp-config.php
|
1195 |
+
* If tmpdir is not writable, try a different tmpdir
|
1196 |
+
* More subject encoding fixes
|
1197 |
+
* Updated image templates, which were causing problems for cron
|
1198 |
+
* Fixed in text captions
|
1199 |
+
* Fixed SQL problems when updating options
|
1200 |
+
* Fixed name clashes with other plugins
|
1201 |
+
* Fixed custom image field
|
1202 |
+
|
1203 |
+
= 1.3.beta (2009.07.01) =
|
1204 |
+
* Mores fixes for character issues in subject
|
1205 |
+
* Now handling Windows-1256 (arabic) character set
|
1206 |
+
* Fixed image uploading on windows servers
|
1207 |
+
* Fixed replying to message adds comment
|
1208 |
+
* Uploading pictures via MMS should now work
|
1209 |
+
* Fixed some issues with e-mails from outloook 12
|
1210 |
+
* Greatly reduced number of database queries
|
1211 |
+
* No longer requiring config_handler.php
|
1212 |
+
|
1213 |
+
= 1.3.alpha (2009.06.05) =
|
1214 |
+
* Now using default wordpress image and upload handling, which means:
|
1215 |
+
* No more creating special directories for postie
|
1216 |
+
* No more confusion about imagemagick
|
1217 |
+
* Can now use the [gallery] feature of wordpress
|
1218 |
+
* Attachments are now connected to posts in the database
|
1219 |
+
* All image resizing uses wordpress's default settings (under media)
|
1220 |
+
* Configuration, settings and documentation improvements
|
1221 |
+
* Completely redesigned settings page (mostly thanks to Rainman)
|
1222 |
+
* Reset configuration no longer deletes mailserver settings
|
1223 |
+
* Now including help files and faq directly in settings page
|
1224 |
+
* More media features
|
1225 |
+
* Automatically turn links to youtube into an embedded player
|
1226 |
+
* Added option to embed audio files with custom templates
|
1227 |
+
* Video options are now template based
|
1228 |
+
* Image options are now solely template based, with several new default
|
1229 |
+
templates
|
1230 |
+
* Bug fixes
|
1231 |
+
* Uploading images from vodafone phones should now work
|
1232 |
+
* Correctly handling Windows-1252 encoding
|
1233 |
+
* Correctly handling non-ascii characters in subject line
|
1234 |
+
|
1235 |
+
= 1.2.3 (2009.05.17) =
|
1236 |
+
* Fixed headers already sent bug
|
1237 |
+
* Converted shortcode `<?` to proper `<?php` (thanks brack)
|
1238 |
+
* Deleting mails after processing again
|
1239 |
+
|
1240 |
+
= 1.2.2 (2009.05.15) =
|
1241 |
+
* Show empty categories for default category in options
|
1242 |
+
* Image scaling fixed so that the smaller value of max image width and max
|
1243 |
+
image height is used
|
1244 |
+
* Fixed some issues with parsing html e-mail
|
1245 |
+
* Got rid of stupid mime tag (thanks Jeroen)
|
1246 |
+
* No longer adding slashes before calling wp_insert_post
|
1247 |
+
* When using custom image field, each image has a unique key
|
1248 |
+
|
1249 |
+
|
1250 |
+
= 1.2.1 (2009.05.07) =
|
1251 |
+
* Got rid of stupid version checking
|
1252 |
+
* Improved cronless postie instructions and configuration
|
1253 |
+
* Internationalization is working now
|
1254 |
+
* Dutch localization (thanks to gvmelle http://gvmelle.com )
|
1255 |
+
* Fixed caption bug when using image magick
|
1256 |
+
* Added option to not filter new lines (when using markdown syntax)
|
1257 |
+
* Fixed autoplay option
|
1258 |
+
* Can now use wildcards in excluding filenames
|
1259 |
+
* Producing better quality thumbnails (thanks to robcarey)
|
1260 |
+
|
1261 |
+
= 1.2 (2009.04.22) =
|
1262 |
+
* More video options:
|
1263 |
+
* Can embed 3gp, mp4, mov videos
|
1264 |
+
* Can specify video width, video height, player width, and player height
|
1265 |
+
in the settings page
|
1266 |
+
* Can specify custom image template
|
1267 |
+
* Image handling improvements:
|
1268 |
+
* Only downscale images, not up-scale (thanks Jarven)
|
1269 |
+
* More custom image template options
|
1270 |
+
* IPTC captions now also work when not resizing images
|
1271 |
+
* Added option to use custom field for images (for Datapusher)
|
1272 |
+
* Fixed some issues with image templates and line break handling
|
1273 |
+
* Custom image template now works even when not resizing images
|
1274 |
+
* Documentation improvements:
|
1275 |
+
* Added links to settings, forum, and readme in plugin description
|
1276 |
+
* Updated readme (thanks to Venkatraman Dhamodaran)
|
1277 |
+
* Added better instructions on how to use cronless postie
|
1278 |
+
* Text processing improvements:
|
1279 |
+
* Added option to automatically convert urls into links
|
1280 |
+
* Added feature to include a custom excerpt
|
1281 |
+
* Miscellaneous improvements
|
1282 |
+
* Improved internationalization (thanks to Håvard Broberg
|
1283 |
+
(nanablag@nanablag.com))
|
1284 |
+
* Bug Fixes
|
1285 |
+
* Removed debugging info in get_mail.php (security issue) thanks to
|
1286 |
+
[Jens]( http://svalgaard.net/jens/)
|
1287 |
+
* No longer directly including pluggable.php (should
|
1288 |
+
prevent conflicts with other plugins such as registerplus
|
1289 |
+
|
1290 |
+
= 1.1.5 (2009.03.10) =
|
1291 |
+
* Added option to have postie posts be pending review, published, or draft
|
1292 |
+
* Settings panel only shows up for administrators
|
1293 |
+
* Need not be user "admin" to modify settings or to post from non-registered
|
1294 |
+
users
|
1295 |
+
* Can now set administrator name. Authorized e-mail addresses which don't
|
1296 |
+
have a user get posted under this name
|
1297 |
+
* Will use IPTC captions if available
|
1298 |
+
* Added option to replace newline characters with <br />
|
1299 |
+
|
1300 |
+
= 1.1.4 (2009.03.06) =
|
1301 |
+
* Added more image options (open in new window, custom image template)
|
1302 |
+
* can now add captions to images
|
1303 |
+
* Can now add tags (including default tag option)
|
1304 |
+
|
1305 |
+
= 1.1.3 (2009.02.20) =
|
1306 |
+
* Fixed delayed posting
|
1307 |
+
* updated readme some
|
1308 |
+
|
1309 |
+
= 1.1.2 (2008.07.12) =
|
1310 |
+
* now maintained by Robert Felty
|
1311 |
+
* allow negative delays
|
1312 |
+
* will glean author information from forwarded or redirected e*mails
|
1313 |
+
* replying to an e*mail adds a comment to a post
|
1314 |
+
* fixed category handling to work with taxonomy
|
1315 |
+
* fixed one syntax error
|
1316 |
+
* added option to wrap posts and comments in <pre> tags
|
1317 |
+
|
1318 |
+
= 1.1.1 =
|
1319 |
+
|
1320 |
+
Below is all the of the version information. As far as I can tell there once was a guy named John Blade. He took some of the original wp-mail.php code
|
1321 |
+
and started hacking away on it. He actually got pretty far. About the time I discovered WordPress and his little hack - called WP-Mail at the time - he
|
1322 |
+
went on a vacation or something. There were some problems with the script, and it was missing some features I wanted. I hacked away at it and got it
|
1323 |
+
into a place where it did what I wanted. I started posting about it since I figured other people might want the features.
|
1324 |
+
|
1325 |
+
John didn't release any more versions at least up til July 2005. So I started accepting submissions and feature requests from people to help make the
|
1326 |
+
code better. In June/July 2005 I discovered a little plugin by Chris J Davis (http://www.chrisjdavis.org/cjd-notepad/) called notepad. I added a small
|
1327 |
+
feature to it (basically a bookmarklet). In the process I started looking at his code and realized how much you could do with the plugin system
|
1328 |
+
available in Word Press.
|
1329 |
+
|
1330 |
+
So I decided to make an official fork. I put up an article on my blog asking for new names. I picked Postie. I then modified the code to be a proper
|
1331 |
+
plugin. And the rest is history :)
|
1332 |
+
|
1333 |
+
* BUGFIX -problem with subject
|
1334 |
+
* BUGFIX -cronless postie typo
|
1335 |
+
|
1336 |
+
= 1.1 =
|
1337 |
+
* FEATURE: Updated and tested with WordPress 2.1
|
1338 |
+
* BUGFIX:Removed deprecated functions
|
1339 |
+
* FEATURE: Cronless Postie now uses the WordPress native Psuedo Cron.
|
1340 |
+
|
1341 |
+
= 1.0 =
|
1342 |
+
* BUGFIX: TestWPVersion broke with 2.1
|
1343 |
+
* FEATURE: end: now marks the end of a message (Dan Cunningham)
|
1344 |
+
* FEATURE: Better Readme (Michael Rasmussen)
|
1345 |
+
* FEATURE: Smart Sharpen Option -EXPERIMENTAL- (Jonas Rhodin)
|
1346 |
+
* BUGFIX: Issue with google imap fixed (Jim Hodgson)
|
1347 |
+
* BUGFIX: Fixed espacing issue in subjects (Paul Clip)
|
1348 |
+
* BUGFIX: Typo in Div fixed (phil)
|
1349 |
+
|
1350 |
+
= 0.9.9.3.2 =
|
1351 |
+
* BUGFIX: Typo
|
1352 |
+
|
1353 |
+
= 0.9.9.3.1 =
|
1354 |
+
* BUGFIX: Removed debugging code
|
1355 |
+
|
1356 |
+
= 0.9.9.3 =
|
1357 |
+
* BUGFIX: If your email address matches an existing user - then it will post as that user - even if you allow anyone to post.
|
1358 |
+
* BUGFIX: Replaced get_settings('home') with get_settings('siteurl')
|
1359 |
+
* BUGFIX: Better handling for Japanese character sets - Thanks to http://www.souzouzone.jp/blog/archives/009531.html
|
1360 |
+
* BUGFIX: Better thumbnail window opening code - thanks to Gabi & Duntello!
|
1361 |
+
* FEATURE: Added an option to set the MAX Height of an image - idea from Duntello
|
1362 |
+
* BUGFIX: Modified the FilterNewLines for better flowed text handling - You now HAVE TO PUT TWO NEW LINES to end a paragraph.
|
1363 |
+
* FEATURE: Added new CSS tags to support positioning images/attachments/3gp videos
|
1364 |
+
* BUGFIX: Tries to use the date in the message (Thanks Ravan) I tried this once before and it never worked - hopefully this time it will.
|
1365 |
+
* BUGFIX: Added a workaround to fix the problem with Subscribe2 - it will now notify on posts that are not set to show up in the future.
|
1366 |
+
|
1367 |
+
= 0.9.9.2 =
|
1368 |
+
* BUGFIX: Looks for the NOOP error and disgards it
|
1369 |
+
* FEATURE: Postie now detects the version of WordPress being used
|
1370 |
+
* FEATURE: Smarter Parsing of VodaPhone
|
1371 |
+
* FEATURE: Easy place to add new code to handle other brain-dead mail clients
|
1372 |
+
* BUGFIX: Handles insertion of single quotes properly
|
1373 |
+
* BUGFIX: Thumbnails should now link properly
|
1374 |
+
|
1375 |
+
= 0.9.9.1 =
|
1376 |
+
* BUGFIX: Needed a strtolower in places to catch all iso-8859 - thx to Gitte Wange for the catch
|
1377 |
+
* BUGFIX: Fixed issue with the category not being posted properly
|
1378 |
+
|
1379 |
+
= 0.9.9 =
|
1380 |
+
* UPDATE TO WP 2.0
|
1381 |
+
* BUGFIX: Config Page now works
|
1382 |
+
* FEATURES: Supports role based posting
|
1383 |
+
* BUGFIX: Posting updates the category counts.
|
1384 |
+
|
1385 |
+
= 0.9.8.6 =
|
1386 |
+
* BUGFIX: Fixed problems with config page <%php became <?php
|
1387 |
+
*
|
1388 |
+
= 0.9.8.5 =
|
1389 |
+
* BUGFIX: onClick changed to onclick
|
1390 |
+
* BUGFIX: strolower added to test for iso - thanks daniele
|
1391 |
+
* BUGFIX: Added a class to the 3gp video tags
|
1392 |
+
* FEATURE: Added the option to put the images before the article
|
1393 |
+
* BUGFIX: Added in selection for charsets - thanks Psykotik - this may cause problems for other encodings
|
1394 |
+
* FEATURE: Added option to turn of quoted printable decoding
|
1395 |
+
* FEATURE: :start tag - now postie looks for this tag before looking for you message - handy if your service provider prepends a message
|
1396 |
+
* FEATURE: Template for translation now included
|
1397 |
+
|
1398 |
+
= 0.9.8.4 =
|
1399 |
+
* BUGFIX: Fixed problem with config_form.php - select had "NULL" instead of ""
|
1400 |
+
* BUGFIX: 3g2 now supported
|
1401 |
+
* BUGFIX: More line break issues addressed
|
1402 |
+
* BUGFIX: QuickTime controls are now visible even if the movie is done playing
|
1403 |
+
* BUGFIX: Email addresses in the format <some@domain.com> (Full Name) supported
|
1404 |
+
* BUGFIX: Some images that were not being resized - are now
|
1405 |
+
* BUGFIX: HTML problems - if you posted plain text with HTML on it ignored all images
|
1406 |
+
* BUGFIX: The test system blew up on the thumbnails
|
1407 |
+
* BUGFIX: Selected HTML for preferred text is now shown in the config form properly
|
1408 |
+
* BUGFIX: Postie now complains if it is not in its own directory
|
1409 |
+
* BUGFIX: Postie doesn't include PEAR if it is already available
|
1410 |
+
* BUGFIX: In Test mode rejected emails are simply dropped
|
1411 |
+
* BUGFIX: Markdown messes up Postie - it will warn you if you turn it on.
|
1412 |
+
*
|
1413 |
+
= 0.9.8.3 =
|
1414 |
+
* BUGFIX: Fixed issue with the line feed replacement
|
1415 |
+
* BUGFIX: Added Banned File Config back in
|
1416 |
+
* FEATURE: Added in a link around 3gp video embedded via QT
|
1417 |
+
* BUGFIX: Email that has both Plain and HTML content will show the HTML content and not the plain if html is preferred
|
1418 |
+
|
1419 |
+
= 0.9.8.2 =
|
1420 |
+
* BUGFIX: Fixed an extra new line after attaching non-image files.
|
1421 |
+
* BUGFIX: The Test system now displays any missing gd functions
|
1422 |
+
* BUGFIX: The test system was only using ImageMagick
|
1423 |
+
|
1424 |
+
= 0.9.8.1 =
|
1425 |
+
* BUGFIX: The test images are now included in the zip
|
1426 |
+
|
1427 |
+
= 0.9.8 =
|
1428 |
+
* BUGFIX: New Lines detected and handled properly in cases where the mail client doesn't put a space before the new line (Miss Distance)
|
1429 |
+
* BUGFIX: 3gp mime type added (Paco Cotera)
|
1430 |
+
* BUGFIX: Authorized Email Addresses are not case-insensitive
|
1431 |
+
* FEATURE: The larger image now does a proper pop up
|
1432 |
+
* BUGFIX: Fixed Timeing Issue - turns out it wasn't reading the db at all
|
1433 |
+
* FEATURE: New Test Screen - to help track down problems
|
1434 |
+
|
1435 |
+
= 0.9.7 =
|
1436 |
+
* BUGFIX: removed all short tags
|
1437 |
+
* BUGFIX: There were spacing issues in the way I wrote the QT embed statements
|
1438 |
+
* FEATURE: Added calls to WP-Cron - should work with that properly now if you activate Cronless Postie
|
1439 |
+
* FEATURE: ImageMagick version works without any calls to GD
|
1440 |
+
* BUGFIX: Postie now correctly handles cases wjere tjere are multiple blogs in one db
|
1441 |
+
* BUGFIX: Turned off warnings when using without GD
|
1442 |
+
* FEATURE: add the rotate:X to your message to rotate all images
|
1443 |
+
* FEATURE: new filter_postie_thumbnail_with_full which makes it easy to show a thumbnail on the front page but full image on the single page - see FAQ
|
1444 |
+
|
1445 |
+
= 0.9.6 =
|
1446 |
+
* BUGFIX: handles email addresses that are no name and just <email@email.com> (Steve Cooley Reported)
|
1447 |
+
* FEATURE: Basic support for embedding flash files
|
1448 |
+
* BUGFIX: Postie now handles creating the correct URL on non Unix platforms
|
1449 |
+
* BUGFIX: Fixed problem with file attachments not being put in the right place.
|
1450 |
+
* FEATURE: You can now choose to use imagemagick convert to handle making thumbnails
|
1451 |
+
* BUGFIX: Rewrote Cronless Postie to use direct sockets
|
1452 |
+
* BUGFIX: Time offset is now settable just for Postie - hopefully this will fix problems for cases where the normal time offset doesn't work properly.
|
1453 |
+
* FEATURE: First draft of frame for a 3GP video
|
1454 |
+
* FEATURE: Option to embed 3GP in QuickTime Controller.
|
1455 |
+
|
1456 |
+
= 0.9.5.2 =
|
1457 |
+
* BUGFIX: gmt variable not being set correctly
|
1458 |
+
* BUGFIX: Changed the name of the Check Mail button to fix an issue with mod_security
|
1459 |
+
* BUGFIX: Fixed issue with Cronless-Postie
|
1460 |
+
* BUGFIX: There was an argument passed by reference incorrectly
|
1461 |
+
* FEATURE: Added in Cronless Postie Readme
|
1462 |
+
* FEATURE: Added in Postie Readme
|
1463 |
+
|
1464 |
+
= 0.9.5.1 =
|
1465 |
+
* BUGFIX: Confirmed POP3-SSL on debian-3.0
|
1466 |
+
* BUGFIX: Updated the plugin version
|
1467 |
+
* BUGFIX: Stopped displaying the email account
|
1468 |
+
*
|
1469 |
+
= 0.9.5 =
|
1470 |
+
* BUGFIX: Postie handles cases where you do not have GD
|
1471 |
+
* FEATURE: You can now set the access level for posting - so other people can use the gate way
|
1472 |
+
* BUGFIX: Fixed issue when admininstrator email is not tied to a user account.
|
1473 |
+
* FEATURE: Can now reset all Postie configurations back to defaults
|
1474 |
+
* BUGFIX: HTML Emails with embedded images are now handled properly.
|
1475 |
+
* BUGFIX: The time difference should work correctly now
|
1476 |
+
* BUGFIX: Postie's configs are completely seperate from Writing-By-Mail
|
1477 |
+
* FEATURE: Warning if you use Gmail to make sure you turn on POP support
|
1478 |
+
* BUGFIX: Manual Check Mail Button in interface
|
1479 |
+
* BUGFIX: fixed issue of compatability with cjd-notepad
|
1480 |
+
* BUGFIX: Windows Works Now
|
1481 |
+
|
1482 |
+
= 0.9.4 =
|
1483 |
+
* BUGFIX: Cronless Postie - fixed the include statement
|
1484 |
+
* BUGFIX: Authorized Addresses now supports a single address
|
1485 |
+
* FEATURE: All configuration in Postie done in a single screen
|
1486 |
+
* FEATURE: AUTHORIZATION can be completely overridden
|
1487 |
+
* BUGFIX: line 1159 - didn't handle cases where the table didn't exist already very well
|
1488 |
+
* FEATURE: Detects if you can do IMAP
|
1489 |
+
* FEATURE: Added IMAP Support
|
1490 |
+
* FEATURE: Added IMAP-SSL Support
|
1491 |
+
* FEATURE: Added POP3-SSL Support
|
1492 |
+
|
1493 |
+
= 0.9.3 =
|
1494 |
+
* Bug fixes for IIS
|
1495 |
+
|
1496 |
+
= 0.9.2 =
|
1497 |
+
* Moved to more of a DIRECTORY_SEPARATOR structure
|
1498 |
+
|
1499 |
+
= 0.9.1 =
|
1500 |
+
* Added a define to fix a problem with over including
|
1501 |
+
|
1502 |
+
= 0.9 =
|
1503 |
+
* Converted to an honest to god plugin
|
1504 |
+
* BUGFIX: If you put a single category:subject it now works
|
1505 |
+
* BUGFIX: ? Special characters may be supported? The test post now shows a lot of umlats and accents?
|
1506 |
+
* BUGFIX: The last ] in a subject with categories is now filtered out
|
1507 |
+
* FEATURE: -1- subject - will put the post in category 1
|
1508 |
+
|
1509 |
+
= 0.312.13 =
|
1510 |
+
* Code clean up - The main loop is finally readable by even non programmers
|
1511 |
+
* FEATURE - You can now post to multiple categories at one time by using the [#],[Category Name], [Cat] in the subject
|
1512 |
+
* FEATURE - You can now select a category by just including the begining characters [G] will select General
|
1513 |
+
* if you don't have any other categories that start with g
|
1514 |
+
* FEATURE - Jay Talbot - added a new feature so you can have multiple email addresses be allowed in
|
1515 |
+
* Make multi category posting more obvious
|
1516 |
+
* BUG FIX: Timezones of GMT+? should now work properly
|
1517 |
+
* BUG FIX: Able to handle mis-mime typed images as long as they are named with .jpg/.gif/.png
|
1518 |
+
|
1519 |
+
= 0.312.12 =
|
1520 |
+
* Code clean up - slowing shrinking the main to make it easier to fix things
|
1521 |
+
* FEATURE: Be able to turn on/off allowing comments in an email
|
1522 |
+
* BUG FIX: AppleDouble now mostly supported
|
1523 |
+
* BUG FIX: MIME handling improved.
|
1524 |
+
* BUG FIX: Fix issue with timing delay
|
1525 |
+
|
1526 |
+
= 0.312.11 =
|
1527 |
+
* FEATURE: Patterns to define where a sig starts are user configurable
|
1528 |
+
* FEATURE: Add filter options for banned file names
|
1529 |
+
* BUG FIX: Made it possible to turn off posting to the db for testing purposes
|
1530 |
+
|
1531 |
+
= 0.312.10 =
|
1532 |
+
* FEATURE: Added in code to diplay the mime type of the file being linked to
|
1533 |
+
* BUG FIX: It now tests for the existance of the directories and makes sure
|
1534 |
+
* that the web server can write to them
|
1535 |
+
|
1536 |
+
= 0.312.9 =
|
1537 |
+
* FEATURE:Should handle jpg as well as jpeg as the file type
|
1538 |
+
* BUG FIX: Now correctly handles the subject in the message
|
1539 |
+
* BUG FIX: Should handle Text preferences correctly
|
1540 |
+
|
1541 |
+
= 0.312.8 =
|
1542 |
+
* Some general code tidying.
|
1543 |
+
* FEATURE: Can now have email from invalid email addresses automatically forwarded
|
1544 |
+
* to the admin's email account. This forward includes all attachments.
|
1545 |
+
* Props to David Luden for getting this started.
|
1546 |
+
* Minor change: The system will continue if it runs into a message that doesn't have
|
1547 |
+
* any content - it will also continue to process if it gets an email from
|
1548 |
+
* someone not in the system. In the past this could result in deleted mail
|
1549 |
+
* if your cron job didn't run often enough.
|
1550 |
+
|
1551 |
+
= 0.312.7 =
|
1552 |
+
* Confirm the handling of 3gp video for cell phones o
|
1553 |
+
* Added in new directive SUPPORTED_FILE_TYPES -if the mime type is listed here then the system will try to make a link to it without making a thumb nail.
|
1554 |
+
|
1555 |
+
= 0.312.6 =
|
1556 |
+
* Bug Fix: Ok the last bug I fixed - actually caused another bug - man I should set up some unit tests. Now it handles mail from the nokia mail client correctly.
|
1557 |
+
|
1558 |
+
= 0.312.5 =
|
1559 |
+
* Bug Fix : The system was accepting all text/* types. Now you can set a preference (defaults to text/plain)
|
1560 |
+
* to use as the main text for the post.
|
1561 |
+
|
1562 |
+
= 0.312.4 =
|
1563 |
+
* Added in sanitize_title call suggested by Jemima
|
1564 |
+
* Added in ability to provide a subject in an mms - by using #Subject#
|
1565 |
+
* Fixed an issue with the time stamp system so it now automatically uses the gmt_offset from WordPress
|
1566 |
+
* Fixed issue with the delay:1d1h tag that prevented it from being removed from the body.
|
1567 |
+
* Fixed issue with the delay tag that caused problems if it was the last thing before an image.
|
1568 |
+
|
1569 |
+
= 0.312.3-HEY (2005-05) =
|
1570 |
+
* > Some changes and Bugfixes by Adrian Heydecker
|
1571 |
+
* > Not (yet) in main development branch.
|
1572 |
+
* Fixed bug: JPEG-thumbnails had a bigger filesize than full images caused by bad hardcoded compression value.
|
1573 |
+
* Fixed bug: If images and signatures were present but no placeholder tags, the images were deleted together with the signature.
|
1574 |
+
* Fixed bug: Generates valid postnames for users of mod_rewrite. Permalinks to posts should now work even when whitespaces are present in the subject line.
|
1575 |
+
* Added support for Quoted Printable encoded mail.
|
1576 |
+
* Added ability to encode Wordpress-posts in charset ISO-8859-1 instead of UTF-8.
|
1577 |
+
* Added ability to choose JPEG-compression value for thumbnails.
|
1578 |
+
* Added ability to add class="" and style="" to images.
|
1579 |
+
* Added ability to use a different mailadress (eg. mobile) without setting up a new Wordpress-account.
|
1580 |
+
|
1581 |
+
= 0.312.2 =
|
1582 |
+
* BUGFIX: It now removes the delay tag from the message
|
1583 |
+
|
1584 |
+
= 0.312.1 =
|
1585 |
+
* Added modification for placeholder support for images (David Luden)
|
1586 |
+
* Added in support to automatically scale down big images (Dirk Elmendorf)
|
1587 |
+
* Fixed bug with multiple emails all getting the contents of the first image tag (Dirk Elmendorf)
|
1588 |
+
* Added option to allow HTML in the body and subject of the email (Dirk Elmendorf)
|
1589 |
+
* Switch config options to defines to reduce the number of global variables (Dirk Elmendorf)
|
1590 |
+
* Added tests to make sure there is a trailing slash on the DIR definitions (Dirk Elmendorf)
|
1591 |
+
* Add tests to see if they have gd installed (Dirk Elmendorf)
|
1592 |
+
* Separate the scaling out to a function for easier usage (Dirk Elmendorf)
|
1593 |
+
* Add delay feature for future posting. (Dirk Elmendorf)
|
1594 |
+
* Added in ability to use strtotime if it is available (Dirk ELmendorf)
|
1595 |
+
|
1596 |
+
= 0.312 - 2005-03 =
|
1597 |
+
* CHANGE FOR DEFAULT E-mail Categories, instead of [General] Subject you can now use General: Subject in the subject line. Less typing, and there must be a space after the colon.
|
1598 |
+
* Fixed bugs with no default posting for categories and user
|
1599 |
+
|
1600 |
+
= 0.311 - 2005-01 =
|
1601 |
+
* eep, major bug for pop3 server. Next time I test my code more before I released, fixed so that pop3 now works.`
|
1602 |
+
|
1603 |
+
= 0.31 - 2004-12 & 2005-01 =
|
1604 |
+
* (Has it been this long, best get back into the swing of things... did most of this coding on my holiday as I didn't have a machine to play WoW on :)
|
1605 |
+
* moved the deletion of pop3 emails into a check so that e-mails aren't deleted without proper checking.
|
1606 |
+
* added HTML 'decoding' (basic support for Thunderbird & Outlook)
|
1607 |
+
* updated the Category search so that it matches words as well as numbers (i.e. [General] Subjectname will work instead of just [1] Subjectname)
|
1608 |
+
* Changed time function from time to strtotime (as per Senior Pez's suggestion), but found out that strtotime isn't in default php distro so removed...
|
1609 |
+
|
1610 |
+
= 0.3 - 2004-09 =
|
1611 |
+
* Added UBB decoding support
|
1612 |
+
* Added default title (when there is no subject assigned)
|
1613 |
+
* Started doing a little code cleanup, been reading Advanced PHP Book :)
|
1614 |
+
*
|
1615 |
+
= 0.2 - 2004-08 =
|
1616 |
+
* Stopped using pear body decoding in favour of own decoding (may be slower but more modifiable) because of enriched text decoding
|
1617 |
+
* Added base64_decode checking (may help mobile phone users)
|
1618 |
+
* Fixed Subject line for non-english users (htmlentities instead of just trim)
|
1619 |
+
* Fixed error in some pop hanging -> more graceful exit on event on no emails in inbox ($pop3->quit)
|
1620 |
+
* Added work around for email addresses with exta <> in field (ie: <blade@lansmash.com> instead of blade@lasmash.com
|
1621 |
+
* Added some ===basic=== enriched text support
|
1622 |
+
* Updated readme file for easier install
|
1623 |
+
* Easy modify of globals (such as PHOTOSDIR and FILESDIR)
|
1624 |
+
* Cleaned up some pear stuff in install
|
1625 |
+
*
|
1626 |
+
= 0.1 - 2004-06 =
|
1627 |
+
* First release
|
1628 |
|