commit | author | age
|
4e17e6
|
1 |
UPDATE instructions |
T |
2 |
=================== |
|
3 |
|
|
4 |
Follow these instructions if upgrading from a previous version |
|
5 |
of RoundCube Webmail. |
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
from versions 0.1-alpha and 0.1-20050811 |
|
10 |
---------------------------------------- |
49afbf
|
11 |
- replace index.php |
4e17e6
|
12 |
- replace all files in folder /program/ |
49afbf
|
13 |
- replace all files in folder /skins/default/ |
42b113
|
14 |
- rund SQL queries in order to update the database |
4e17e6
|
15 |
- add these line to /config/main.inc.php |
T |
16 |
$rcmail_config['trash_mbox'] = 'Trash'; |
|
17 |
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); |
|
18 |
$rcmail_config['prefer_html'] = TRUE; |
30233b
|
19 |
$rcmail_config['prettydate'] = TRUE; |
968bdc
|
20 |
$rcmail_config['smtp_port'] = 25; |
42b113
|
21 |
$rcmail_config['default_port'] = 143; |
T |
22 |
- replace database properties (db_type, db_host, db_user, db_pass, $d_name) |
|
23 |
in /config/db.inc.php with the following line: |
|
24 |
$rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; |
30233b
|
25 |
|
T |
26 |
|
|
27 |
from version 0.1-20050820 |
|
28 |
---------------------------------------- |
49afbf
|
29 |
- replace index.php |
30233b
|
30 |
- replace all files in folder /program/ |
49afbf
|
31 |
- replace all files in folder /skins/default/ |
42b113
|
32 |
- rund SQL queries in order to update the database |
30233b
|
33 |
- add these line to /config/main.inc.php |
T |
34 |
$rcmail_config['prettydate'] = TRUE; |
968bdc
|
35 |
$rcmail_config['smtp_port'] = 25; |
42b113
|
36 |
$rcmail_config['default_port'] = 143; |
T |
37 |
- replace database properties (db_type, db_host, db_user, db_pass, $d_name) |
|
38 |
in /config/db.inc.php with the following line: |
|
39 |
$rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; |
|
40 |
|