source: github/UPGRADING @ fad5c3e

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since fad5c3e was fad5c3e, checked in by thomascube <thomas@…>, 8 years ago

CSS fixes for IE

  • Property mode set to 100644
File size: 1.7 KB
Line 
1UPDATE instructions
2===================
3
4Follow these instructions if upgrading from a previous version
5of RoundCube Webmail.
6
7
8
9from 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
27from 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
42from 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
Note: See TracBrowser for help on using the repository browser.