projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4fd9f38
)
Use default timeout in Horde_Imap_Client::
author
Michael M Slusarz
<slusarz@curecanti.org>
Thu, 18 Jun 2009 22:46:04 +0000
(16:46 -0600)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Thu, 18 Jun 2009 22:46:04 +0000
(16:46 -0600)
imp/lib/Imap.php
patch
|
blob
|
history
diff --git
a/imp/lib/Imap.php
b/imp/lib/Imap.php
index
3655036
..
b5c6158
100644
(file)
--- 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,
);