Wayne

Wayne

Action: postie_session_end

This action gets called at the end of each Postie session. I.e. after Postie finishes the process of checking for emails and turning them into posts. add_action(‘postie_session_end’, ‘my_postie_session_end_action’); function my_postie_session_end_action() { //all done processing emails }

Action: postie_session_start

This action gets called at the beginning of each Postie session. I.e. when Postie starts the process to check for emails and turn them into posts. add_action(‘postie_session_start’, ‘my_postie_session_start_action’); function my_postie_session_start_action() { //get ready to process a bunch of emails }

1.7.20 Released

Fixed bug where debug info was not being displayed according to settings Fix bug where “Ignore mail state” setting was being ignored Fix bug where empty post was being generated when already read mail was in the inbox and “Ignore…

1.7.17 Released

New action, postie_log_error New action, postie_log_debug New feature to turn off all logging Only errors logged by default

postie_log_* Actions

postie_log_error & postie_log_debug These filters are called when Postie has some information about what is happening. postie_log_error is called if Postie encounters an error reported by WordPress. postie_log_debug is called throughout the Postie process when something of interest occurs. add_action(‘postie_log_error’,…

1.7.16 Released

Ensure comments are valid html after striping if preferred text type is html Add setting to control comment content (strip_reply)