| 1 | UPDATE instructions |
|---|
| 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 | ---------------------------------------- |
|---|
| 11 | - replace index.php |
|---|
| 12 | - replace all files in folder /program/ |
|---|
| 13 | - replace all files in folder /skins/default/ |
|---|
| 14 | - rund SQL queries in order to update the database |
|---|
| 15 | - add these line to /config/main.inc.php |
|---|
| 16 | $rcmail_config['trash_mbox'] = 'Trash'; |
|---|
| 17 | $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); |
|---|
| 18 | $rcmail_config['prefer_html'] = TRUE; |
|---|
| 19 | $rcmail_config['prettydate'] = TRUE; |
|---|
| 20 | $rcmail_config['smtp_port'] = 25; |
|---|
| 21 | $rcmail_config['default_port'] = 143; |
|---|
| 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'; |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | from version 0.1-20050820 |
|---|
| 28 | ---------------------------------------- |
|---|
| 29 | - replace index.php |
|---|
| 30 | - replace all files in folder /program/ |
|---|
| 31 | - replace all files in folder /skins/default/ |
|---|
| 32 | - rund SQL queries in order to update the database |
|---|
| 33 | - add these line to /config/main.inc.php |
|---|
| 34 | $rcmail_config['prettydate'] = TRUE; |
|---|
| 35 | $rcmail_config['smtp_port'] = 25; |
|---|
| 36 | $rcmail_config['default_port'] = 143; |
|---|
| 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 | |
|---|
| 41 | |
|---|
| 42 | from version 0.1-20051007 |
|---|
| 43 | ---------------------------------------- |
|---|
| 44 | - replace index.php |
|---|
| 45 | - replace all files in folder /program/ |
|---|
| 46 | - replace all files in folder /skins/default/ |
|---|
| 47 | - add $rcmail_config['smtp_auth_type'] if you need to specify an auth method for SMTP |
|---|