From 07aaf0f176c6bbc046b835d5cc16d4580fb9afee Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 18 Jun 2009 16:46:04 -0600 Subject: [PATCH] Use default timeout in Horde_Imap_Client:: --- imp/lib/Imap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/lib/Imap.php b/imp/lib/Imap.php index 365503676..b5c615883 100644 --- a/imp/lib/Imap.php +++ b/imp/lib/Imap.php @@ -170,7 +170,7 @@ class IMP_Imap 'port' => isset($server['port']) ? $server['port'] : null, 'secure' => isset($server['secure']) ? $server['secure'] : false, 'statuscache' => true, - 'timeout' => !empty($server['timeout']) ? $server['timeout'] : 10, + 'timeout' => empty($server['timeout']) ? null : $server['timeout'], 'username' => $username, ); -- 2.11.0