diff options
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 // ---------------------------------- |