Where is the setting to control the 60s refresh? We're using Roundcube over a high grade SSL connection and 60 seconds is much too frequent, but I don't see a relevant setting anywhere. I couldn't even locate the timeout call in the JavaScript, assuming there is one somewhere.
Thanks. _______________________________________________ List info: http://lists.roundcube.net/users/
On Dec 13, 2007, at 1:22 PM, Eric wrote:
Where is the setting to control the 60s refresh? We're using Roundcube over a high grade SSL connection and 60 seconds is much too frequent, but I don't see a relevant setting anywhere. I couldn't even locate the timeout call in the JavaScript, assuming there is one somewhere.
[chasd@server3 roundcubemail]$ find . -type f -exec grep -l 60 {} ;| sed -e '/.svn/ d'
<bunch of results> looking through the results, a file with "session" in the name looks promising -
[chasd@server3 roundcubemail]$ grep 60 program/include/session.inc setcookie(session_name(), "", time() - 3600);
also
[chasd@server3 roundcubemail]$ grep 60 program/include/main.inc
if (!empty($CONFIG['session_lifetime']) && isset($SESS_CHANGED) &&
$SESS_CHANGED + $CONFIG['session_lifetime']*60 < time())
setcookie('sessauth', '-del-', time()-60);
'code' => 600,
$iconv_map = array('KS_C_5601-1987' => 'EUC-KR');
$mb_map = array('UTF-7' => 'UTF7-IMAP', 'KS_C_5601-1987' => 'EUC-
KR');
for ($c=160; $c<256; $c++) // can be increased to support more
charsets
$timestamp = $ts - date('Z', $ts) + ($tz * 3600);
$now += ($tz * 3600); // user's time
HTH
Charles Dostale System Admin - Silver Oaks Communications http://www.silveroaks.com/ 824 17th Street, Moline IL 61265
List info: http://lists.roundcube.net/users/
On 12/14/07, chasd chasd@silveroaks.com wrote:
On Dec 13, 2007, at 1:22 PM, Eric wrote:
Where is the setting to control the 60s refresh? We're using Roundcube over a high grade SSL connection and 60 seconds is much too frequent, but I don't see a relevant setting anywhere. I couldn't even locate the timeout call in the JavaScript, assuming there is one somewhere.
Hello,
Try changing these in app.js
// default environment vars this.env.keep_alive = 60; // seconds this.env.request_timeout = 180; // seconds this.env.draft_autosave = 0; // seconds
HTH
kmn _______________________________________________ List info: http://lists.roundcube.net/users/