]> git.donarmstrong.com Git - roundcube.git/blob - UPGRADING
Imported Upstream version 0.1.1
[roundcube.git] / UPGRADING
1 UPDATE instructions
2 ===================
3
4 Follow these instructions if upgrading from a previous version
5 of RoundCube Webmail.
6
7 from version 0.1-stable
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 * run all commands in SQL/[yourdbtype].update.sql
14
15
16 from version 0.1-rc2
17 ----------------------------------------
18 * replace index.php
19 * replace all files in folder /bin/
20 * replace all files in folder /program/
21 * replace all files in folder /skins/default/
22 * run all commands in SQL/[yourdbtype].update.sql
23
24
25 from version 0.1-rc1
26 ----------------------------------------
27 * replace index.php
28 * replace all files in folder /bin/
29 * replace all files in folder /program/
30 * replace all files in folder /skins/default/
31 * run all commands in SQL/[yourdbtype].update.sql
32 * If you have LDAP servers configured you should re-configure
33   the config entries using the template given in /config/main.inc.php.dist
34
35
36 from version 0.1-beta2
37 ----------------------------------------
38 * replace index.php
39 * replace all files in folder /bin/
40 * replace all files in folder /program/
41 * replace all files in folder /skins/default/
42 * re-initalize the database with [yourdbtype].initial.sql
43 * add these lines to /config/main.inc.php
44    $rcmail_config['draft_autosave'] = 300;
45    $rcmail_config['date_today'] = 'H:i';
46 * If you have LDAP servers configured you should re-configure
47   the config entries using the template given in /config/main.inc.php.dist
48
49
50 form version 0.1-beta
51 ----------------------------------------
52 * replace index.php
53 * replace all files in folder /bin/
54 * replace all files in folder /program/
55 * replace all files in folder /skins/default/
56 * re-initalize the database with [yourdbtype].initial.sql
57 * add this line to /config/db.inc.php
58    $rcmail_config['db_persistent'] = false;
59 * add these lines to /config/main.inc.php
60    $rcmail_config['drafts_mbox'] = 'Drafts';
61    $rcmail_config['junk_mbox'] = 'Junk';
62    $rcmail_config['product_name'] = 'RoundCube Webmail';
63    $rcmail_config['read_when_deleted'] = false;
64    $rcmail_config['enable_spellcheck'] = false;
65    $rcmail_config['protect_default_folders'] = false;
66 * replace the following line from /config/main.inc.php
67    @include($_SERVER['HTTP_HOST'].'.inc.php');
68   with 
69    $rcmail_config['include_host_config'] = false;