From 8381ee663f3235c64d2916fa1e7136604870a44c Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Fri, 7 Aug 2009 17:11:39 +0000 Subject: [PATCH] Set the interval to 5 minutes like I meant. See #7245 props aaroncampbell. git-svn-id: https://develop.svn.wordpress.org/trunk@11786 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-mail.php b/wp-mail.php index 38c0d2bf3e..a8d9a70365 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -15,7 +15,7 @@ require_once( ABSPATH . WPINC . '/class-pop3.php' ); /** Only check at this interval for new messages. */ if ( !defined('WP_MAIL_INTERVAL') ) - define('WP_MAIL_INTERVAL', 500); // 5 minutes + define('WP_MAIL_INTERVAL', 300); // 5 minutes $last_checked = get_transient('mailserver_last_checked');