From 45ec67dc13ff9ea18e845d198d66e7f7424b4dd2 Mon Sep 17 00:00:00 2001 From: westi 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: http://svn.automattic.com/wordpress/trunk@11786 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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');