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 }

Read MoreAction: postie_session_start

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…

Read More1.7.20 Released

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’,…

Read Morepostie_log_* Actions