till
2008-05-26 afe50aed70e96fa943d1cec07465a408afc1e703
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
30606b 7 from version 0.1.1
A 8 ----------------------------------------
9 * replace index.php
10 * replace all files in folder /bin/
11 * replace all files in folder /program/
12 * replace all files in folder /skins/default/
13 * check the config/main.inc.php.dist for new configuration 
14   options and add them to your config 
15
16
17 from version 0.1-stable
18 ----------------------------------------
19 * replace index.php
20 * replace all files in folder /bin/
21 * replace all files in folder /program/
22 * replace all files in folder /skins/default/
23 * run all commands in SQL/[yourdbtype].update.sql
24 * check the config/main.inc.php.dist for new configuration options
25   and add them to your config 
26
27
83ce4b 28 from version 0.1-rc2
T 29 ----------------------------------------
30 * replace index.php
31 * replace all files in folder /bin/
32 * replace all files in folder /program/
33 * replace all files in folder /skins/default/
30606b 34 * run all commands in SQL/[yourdbtype].update.sql
83ce4b 35
T 36
b37599 37 from version 0.1-rc1
f7bfec 38 ----------------------------------------
T 39 * replace index.php
83ce4b 40 * replace all files in folder /bin/
f7bfec 41 * replace all files in folder /program/
T 42 * replace all files in folder /skins/default/
b37599 43 * If you have LDAP servers configured you should re-configure
T 44   the config entries using the template given in /config/main.inc.php.dist
45
46
47 from version 0.1-beta2
48 ----------------------------------------
49 * replace index.php
83ce4b 50 * replace all files in folder /bin/
b37599 51 * replace all files in folder /program/
T 52 * replace all files in folder /skins/default/
53 * run all commands in SQL/[yourdbtype].update.sql or
54   re-initalize the database with [yourdbtype].initial.sql
635831 55 * add these lines to /config/main.inc.php
b37599 56    $rcmail_config['draft_autosave'] = 300;
T 57    $rcmail_config['date_today'] = 'H:i';
58 * If you have LDAP servers configured you should re-configure
59   the config entries using the template given in /config/main.inc.php.dist
f7bfec 60
T 61
62 form version 0.1-beta
63 ----------------------------------------
64 * replace index.php
83ce4b 65 * replace all files in folder /bin/
f7bfec 66 * replace all files in folder /program/
T 67 * replace all files in folder /skins/default/
b37599 68 * run all commands in SQL/[yourdbtype].update.sql or
T 69   re-initalize the database with [yourdbtype].initial.sql
70 * add this line to /config/db.inc.php
71    $rcmail_config['db_persistent'] = false;
f7bfec 72 * add these lines to /config/main.inc.php
b37599 73    $rcmail_config['drafts_mbox'] = 'Drafts';
T 74    $rcmail_config['junk_mbox'] = 'Junk';
75    $rcmail_config['product_name'] = 'RoundCube Webmail';
76    $rcmail_config['read_when_deleted'] = false;
77    $rcmail_config['enable_spellcheck'] = false;
78    $rcmail_config['protect_default_folders'] = false;
f7bfec 79 * replace the following line from /config/main.inc.php
T 80    @include($_SERVER['HTTP_HOST'].'.inc.php');
81   with 
b37599 82    $rcmail_config['include_host_config'] = false;