From 8772775a1596c847ad07d5e1655bc792788f1580 Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 10 Sep 2009 20:05:24 +0000 Subject: [PATCH] Post by Email plugins might want to use there own POP3 class so move the action earlier. git-svn-id: http://svn.automattic.com/wordpress/trunk@11910 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-mail.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-mail.php b/wp-mail.php index dc8dd86310..25de0a9762 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -10,12 +10,12 @@ /** Make sure that the WordPress bootstrap has run before continuing. */ require(dirname(__FILE__) . '/wp-load.php'); -/** Get the POP3 class with which to access the mailbox. */ -require_once( ABSPATH . WPINC . '/class-pop3.php' ); - /** Allow a plugin to do a complete takeover of Post by Email **/ do_action('wp_mail'); +/** Get the POP3 class with which to access the mailbox. */ +require_once( ABSPATH . WPINC . '/class-pop3.php' ); + /** Only check at this interval for new messages. */ if ( !defined('WP_MAIL_INTERVAL') ) define('WP_MAIL_INTERVAL', 300); // 5 minutes