diff options
author | thomascube <thomas@roundcube.net> | 2006-01-05 00:37:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-01-05 00:37:10 +0000 |
commit | 15a9d1ce671fcbc44ea3e4858d7aa6f5b22300c9 (patch) | |
tree | 30e15c3f52ff435d5b08691424515995d8b077c9 /UPGRADING | |
parent | 977a295eb1e97e0c230063da40b8296fca778814 (diff) |
Optimized loading time; added periodic mail check; added EXPUNGE command
Diffstat (limited to 'UPGRADING')
-rw-r--r-- | UPGRADING | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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'; + |