diff options
author | alecpl <alec@alec.pl> | 2010-05-28 13:54:32 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-05-28 13:54:32 +0000 |
commit | f07d238b1b4d75b34639be873dcc1b1627404ae7 (patch) | |
tree | a3da2442d4f23e6c68802341413d874d74423fe4 /config/main.inc.php.dist | |
parent | de9f799a39645e581c7e9c8f54082a4ebf77aa09 (diff) |
- Add 'imap_timeout' option (#1486760)
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 15b6f9f1f..b1da1595a 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -80,6 +80,9 @@ $rcmail_config['imap_delimiter'] = null; // after login. Set to True if you've got this case. $rcmail_config['imap_force_caps'] = false; +// IMAP connection timeout, in seconds. Default: 0 (no limit) +$rcmail_config['imap_timeout'] = 0; + // ---------------------------------- // SMTP // ---------------------------------- @@ -111,6 +114,9 @@ $rcmail_config['smtp_auth_type'] = ''; // localhost if that isn't defined. $rcmail_config['smtp_helo_host'] = ''; +// SMTP connection timeout, in seconds. Default: 0 (no limit) +$rcmail_config['smtp_timeout'] = 0; + // ---------------------------------- // SYSTEM // ---------------------------------- |