diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-05-28 13:54:32 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-05-28 13:54:32 +0000 |
| commit | cb891c6f96ffc8b0d7c8a6ff83574f43818fe092 (patch) | |
| tree | a81dbd15cb2f22327eef34d009eb15ad2675712a /roundcubemail/config | |
| parent | 43dea739f1d9c49dcdd6d59c20d1f3a10263ee91 (diff) | |
- Add 'imap_timeout' option (#1486760)
git-svn-id: https://svn.roundcube.net/trunk@3684 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index 15b6f9f1f..b1da1595a 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/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 // ---------------------------------- |
