Filter: postie_preconnect

This filter is called to determine the connection settings for the email server. This filter is called after postie_session_start. add_filter(‘postie_preconnect’, ‘my_postie_preconnect’); // Force Postie to only fetch 1 email regardless of the setting. function my_postie_preconnect($connectionInfo) { connectionInfo[’email_max’] = 1; return…

Read MoreFilter: postie_preconnect

1.7.24 Released

Youtube and Vimeo URLs are no longer processed, left for WordPress to do its oEmbed thing. New settings to control various flavors of category matching in the subject line

Read More1.7.24 Released

1.7.23 Released

WordPress 4.4 testing Added new video template for using video shortcode Added new template variable – FILETYPE which is the file extension Fix bug where emails inside shortcodes were being linkified Lookup categories by slug as well as by name

Read More1.7.23 Released

1.7.22 Released

Update admin screen to match current WP style (responsive!) Remove dependence on simple tabs jQuery-UI library and use WP admin tab style Remove email password from logging

Read More1.7.22 Released

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 }

Read MoreAction: postie_session_end