summaryrefslogtreecommitdiff
path: root/roundcubemail/UPGRADING
diff options
context:
space:
mode:
authorroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-01-05 00:37:10 +0000
committerroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-01-05 00:37:10 +0000
commit08da5273ebc148c320ae7f2b9ecd2b2b1c1bc5f0 (patch)
tree31be5d19550ab52a439bc399d215a1a5581fba97 /roundcubemail/UPGRADING
parente786e636683429a4c57dbea03b4e35007a593371 (diff)
Optimized loading time; added periodic mail check; added EXPUNGE command
git-svn-id: https://svn.roundcube.net/trunk@93 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/UPGRADING')
-rw-r--r--roundcubemail/UPGRADING7
1 files changed, 6 insertions, 1 deletions
diff --git a/roundcubemail/UPGRADING b/roundcubemail/UPGRADING
index fbfd47b19..21512c138 100644
--- a/roundcubemail/UPGRADING
+++ b/roundcubemail/UPGRADING
@@ -19,6 +19,7 @@ from versions 0.1-alpha and 0.1-20050811
$rcmail_config['smtp_port'] = 25;
$rcmail_config['default_port'] = 143;
$rcmail_config['session_lifetime'] = 20;
+ $rcmail_config['skip_deleted'] = FALSE;
$rcmail_config['message_sort_col'] = 'date';
$rcmail_config['message_sort_order'] = 'DESC';
$rcmail_config['log_dir'] = 'logs/';
@@ -41,6 +42,7 @@ from version 0.1-20050820
$rcmail_config['smtp_port'] = 25;
$rcmail_config['default_port'] = 143;
$rcmail_config['session_lifetime'] = 20;
+ $rcmail_config['skip_deleted'] = FALSE;
$rcmail_config['message_sort_col'] = 'date';
$rcmail_config['message_sort_order'] = 'DESC';
$rcmail_config['log_dir'] = 'logs/';
@@ -61,6 +63,7 @@ from version 0.1-20051007
- add these lines to /config/main.inc.php
$rcmail_config['smtp_auth_type'] = ''; // if you need to specify an auth method for SMTP
$rcmail_config['session_lifetime'] = 20; // to specify the session lifetime in minutes
+ $rcmail_config['skip_deleted'] = FALSE;
$rcmail_config['message_sort_col'] = 'date';
$rcmail_config['message_sort_order'] = 'DESC';
$rcmail_config['log_dir'] = 'logs/';
@@ -81,6 +84,7 @@ from version 0.1-20051021
- replace all files in folder /skins/default/
- run all commands in SQL/*.update.sql or re-initalize database with *.initial.sql
- add these lines to /config/main.inc.php
+ $rcmail_config['skip_deleted'] = FALSE;
$rcmail_config['message_sort_col'] = 'date';
$rcmail_config['message_sort_order'] = 'DESC';
$rcmail_config['log_dir'] = 'logs/';
@@ -91,4 +95,5 @@ from version 0.1-20051021
$rcmail_config['db_sequence_identity_ids'] = 'identity_ids';
$rcmail_config['db_sequence_contact_ids'] = 'contact_ids';
$rcmail_config['db_sequence_cache_ids'] = 'cache_ids';
- $rcmail_config['db_sequence_message_ids'] = 'message_ids'; \ No newline at end of file
+ $rcmail_config['db_sequence_message_ids'] = 'message_ids';
+