summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2005-10-20 22:20:26 +0000
committerthomascube <thomas@roundcube.net>2005-10-20 22:20:26 +0000
commit7902df457d3401c83f78a6ddd48df1a7f07f68b1 (patch)
treecc0861b2f1406970d5955f0ccb730fecef5b337a /config
parent1038d554e41b4007461a0c74a89625fd03107f7f (diff)
Fixed SSL support; improved Courier compatibility; some visual enhancements and bugfixes
Diffstat (limited to 'config')
-rw-r--r--config/db.inc.php.dist2
-rw-r--r--config/main.inc.php.dist8
2 files changed, 7 insertions, 3 deletions
diff --git a/config/db.inc.php.dist b/config/db.inc.php.dist
index 987530922..fdb7d7ea2 100644
--- a/config/db.inc.php.dist
+++ b/config/db.inc.php.dist
@@ -16,7 +16,7 @@ $rcmail_config = array();
// PEAR database DSN for read/write operations
// format is db_provider://user:password@host/databse
-// currentyl suported db_providers: mysql, sqlite, pgsql
+// currentyl suported db_providers: mysql, sqlite
$rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail';
// sqlite example: 'sqlite://./sqlite.db?mode=0646';
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 351e4b8f5..c8d1ad076 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -22,7 +22,8 @@ $rcmail_config['debug_level'] = 5;
// this is recommended if the IMAP server does not run on the same machine
$rcmail_config['enable_caching'] = TRUE;
-// automatically create a new user when log-in the first time
+// automatically create a new RoundCube user when log-in the first time.
+// a new user will be created once the IMAP login succeeded.
// set to false if only registered users can use this service
$rcmail_config['auto_create_user'] = TRUE;
@@ -67,6 +68,9 @@ $rcmail_config['skin_path'] = 'skins/default/';
// use this folder to store temp files (must be writebale for apache user)
$rcmail_config['temp_dir'] = 'temp/';
+// session lifetime in minutes
+$rcmail_config['session_lifetime'] = 10;
+
// check client IP in session athorization
$rcmail_config['ip_check'] = TRUE;
@@ -80,7 +84,7 @@ $rcmail_config['date_short'] = 'D H:i';
$rcmail_config['date_long'] = 'd.m.Y H:i';
// add this user-agent to message headers when sending
-$rcmail_config['useragent'] = 'RoundCube Webmail/0.1-20051011';
+$rcmail_config['useragent'] = 'RoundCube Webmail/0.1-20051021';
// only list folders within this path
$rcmail_config['imap_root'] = '';