diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-20 22:20:26 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-20 22:20:26 +0000 |
| commit | e8ee29555cd7845b3fbfcaab6f012608f80ad442 (patch) | |
| tree | 3ccee82c7196cd972aa1d8f67713cd1a18575516 /roundcubemail/config | |
| parent | 5ac199a11abfa91a37916ddd42d6c1afc283111f (diff) | |
Fixed SSL support; improved Courier compatibility; some visual enhancements and bugfixes
git-svn-id: https://svn.roundcube.net/trunk@49 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/db.inc.php.dist | 2 | ||||
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/roundcubemail/config/db.inc.php.dist b/roundcubemail/config/db.inc.php.dist index 987530922..fdb7d7ea2 100644 --- a/roundcubemail/config/db.inc.php.dist +++ b/roundcubemail/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/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index 351e4b8f5..c8d1ad076 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/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'] = ''; |
