Changeset b37599d in github


Ignore:
Timestamp:
Oct 10, 2007 2:40:16 AM (6 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
480f5d92
Parents:
352aefe
Message:

Update UPGRADING instructions + remove old stuff

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r7325395 rb37599d  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42007/10/10 (thomasb) 
     5---------- 
     6- Set preferences field in user table to NULL (#1484386) 
     7- Log error when login fails due to auto_create_user turned off 
     8- Update UPGRADING instructions 
    39 
    4102007/10/05 (tomekp) 
  • UPGRADING

    rf115416 rb37599d  
    55of RoundCube Webmail. 
    66 
    7  
    8 from version 1.0-beta2 
     7from version 0.1-rc1 
    98---------------------------------------- 
    109* replace index.php 
    1110* replace all files in folder /program/ 
    1211* replace all files in folder /skins/default/ 
    13 * run all commands in SQL/*.update.sql or re-initalize database with *.initial.sql 
     12* If you have LDAP servers configured you should re-configure 
     13  the config entries using the template given in /config/main.inc.php.dist 
     14 
     15 
     16from version 0.1-beta2 
     17---------------------------------------- 
     18* replace index.php 
     19* replace all files in folder /program/ 
     20* replace all files in folder /skins/default/ 
     21* run all commands in SQL/[yourdbtype].update.sql or 
     22  re-initalize the database with [yourdbtype].initial.sql 
    1423* add these lines to /config/main.inc.php 
    15   $rcmail_config['draft_autosave'] = 300; 
    16   $rcmail_config['htmleditor'] = TRUE; 
    17   $rcmail_config['preview_pane'] = TRUE; 
    18   $rcmail_config['date_today'] = 'H:i'; 
    19   $rcmail_config['double_auth'] = TRUE; 
    20 * If you have LDAP servers configured, change prop key 'mail_field' 
    21   to 'email_field' for each server confgured in /config/main.inc.php 
     24   $rcmail_config['draft_autosave'] = 300; 
     25   $rcmail_config['date_today'] = 'H:i'; 
     26* If you have LDAP servers configured you should re-configure 
     27  the config entries using the template given in /config/main.inc.php.dist 
    2228 
    2329 
     
    2733* replace all files in folder /program/ 
    2834* replace all files in folder /skins/default/ 
    29 * run all commands in SQL/*.update.sql or re-initalize database with *.initial.sql 
    30 * add these line to /config/db.inc.php 
    31   $rcmail_config['db_persistent'] = TRUE; 
     35* run all commands in SQL/[yourdbtype].update.sql or 
     36  re-initalize the database with [yourdbtype].initial.sql 
     37* add this line to /config/db.inc.php 
     38   $rcmail_config['db_persistent'] = false; 
    3239* add these lines to /config/main.inc.php 
    33   $rcmail_config['drafts_mbox'] = 'Drafts'; 
    34   $rcmail_config['junk_mbox'] = 'Junk'; 
    35   $rcmail_config['product_name'] = 'RoundCube Webmail'; 
    36   $rcmail_config['read_when_deleted'] = TRUE; 
    37   $rcmail_config['enable_spellcheck'] = TRUE; 
    38   $rcmail_config['protect_default_folders'] = TRUE; 
     40   $rcmail_config['drafts_mbox'] = 'Drafts'; 
     41   $rcmail_config['junk_mbox'] = 'Junk'; 
     42   $rcmail_config['product_name'] = 'RoundCube Webmail'; 
     43   $rcmail_config['read_when_deleted'] = false; 
     44   $rcmail_config['enable_spellcheck'] = false; 
     45   $rcmail_config['protect_default_folders'] = false; 
    3946* replace the following line from /config/main.inc.php 
    4047   @include($_SERVER['HTTP_HOST'].'.inc.php'); 
    4148  with  
    42    $rcmail_config['include_host_config'] = TRUE; 
    43  
    44  
    45  
    46 from version 0.1-20051021 
    47 ---------------------------------------- 
    48 * replace index.php 
    49 * replace all files in folder /program/ 
    50 * replace all files in folder /skins/default/ 
    51 * run all commands in SQL/*.update-0.1a.sql or re-initalize database with *.initial.sql 
    52 * add these lines to /config/main.inc.php 
    53   $rcmail_config['skip_deleted'] = FALSE; 
    54   $rcmail_config['message_sort_col'] = 'date'; 
    55   $rcmail_config['message_sort_order'] = 'DESC'; 
    56   $rcmail_config['log_dir'] = 'logs/'; 
    57   $rcmail_config['temp_dir'] = 'temp/'; 
    58   $rcmail_config['message_cache_lifetime'] = '10d'; 
    59   $rcmail_config['drafts_mbox'] = 'Drafts'; 
    60   $rcmail_config['product_name'] = 'RoundCube Webmail'; 
    61   $rcmail_config['read_when_deleted'] = TRUE; 
    62   $rcmail_config['enable_spellcheck'] = TRUE; 
    63 * add these lines to /config/db.inc.php 
    64   $rcmail_config['db_max_length'] = 512000; 
    65   $rcmail_config['db_sequence_user_ids'] = 'user_ids'; 
    66   $rcmail_config['db_sequence_identity_ids'] = 'identity_ids'; 
    67   $rcmail_config['db_sequence_contact_ids'] = 'contact_ids'; 
    68   $rcmail_config['db_sequence_cache_ids'] = 'cache_ids'; 
    69   $rcmail_config['db_sequence_message_ids'] = 'message_ids'; 
    70   $rcmail_config['db_persistent'] = TRUE; 
    71  
    72  
    73  
    74 from version 0.1-20051007 
    75 ---------------------------------------- 
    76 * replace index.php 
    77 * replace all files in folder /program/ 
    78 * replace all files in folder /skins/default/ 
    79 * run all commands in SQL/*.update-0.1a.sql or re-initalize database with *.initial.sql 
    80 * add these lines to /config/main.inc.php 
    81   $rcmail_config['smtp_auth_type'] = '';  // if you need to specify an auth method for SMTP 
    82   $rcmail_config['session_lifetime'] = 20;  // to specify the session lifetime in minutes 
    83   $rcmail_config['skip_deleted'] = FALSE; 
    84   $rcmail_config['message_sort_col'] = 'date'; 
    85   $rcmail_config['message_sort_order'] = 'DESC'; 
    86   $rcmail_config['log_dir'] = 'logs/'; 
    87   $rcmail_config['temp_dir'] = 'temp/'; 
    88   $rcmail_config['message_cache_lifetime'] = '10d'; 
    89   $rcmail_config['drafts_mbox'] = 'Drafts'; 
    90   $rcmail_config['product_name'] = 'RoundCube Webmail'; 
    91   $rcmail_config['read_when_deleted'] = TRUE; 
    92   $rcmail_config['enable_spellcheck'] = TRUE; 
    93 * add these lines to /config/db.inc.php 
    94   $rcmail_config['db_max_length'] = 512000;   
    95   $rcmail_config['db_sequence_user_ids'] = 'user_ids'; 
    96   $rcmail_config['db_sequence_identity_ids'] = 'identity_ids'; 
    97   $rcmail_config['db_sequence_contact_ids'] = 'contact_ids'; 
    98   $rcmail_config['db_sequence_cache_ids'] = 'cache_ids'; 
    99   $rcmail_config['db_sequence_message_ids'] = 'message_ids';   
    100   $rcmail_config['db_persistent'] = TRUE; 
    101  
    102  
    103  
    104 from version 0.1-20050820 
    105 ---------------------------------------- 
    106 * replace index.php 
    107 * replace all files in folder /program/ 
    108 * replace all files in folder /skins/default/ 
    109 * run all commands in SQL/*.update-0.1a.sql or re-initalize database with *.initial.sql 
    110 * add these line to /config/main.inc.php 
    111   $rcmail_config['prettydate'] = TRUE; 
    112   $rcmail_config['smtp_port'] = 25; 
    113   $rcmail_config['default_port'] = 143; 
    114   $rcmail_config['session_lifetime'] = 20; 
    115   $rcmail_config['skip_deleted'] = FALSE; 
    116   $rcmail_config['message_sort_col'] = 'date'; 
    117   $rcmail_config['message_sort_order'] = 'DESC'; 
    118   $rcmail_config['log_dir'] = 'logs/'; 
    119   $rcmail_config['temp_dir'] = 'temp/'; 
    120   $rcmail_config['message_cache_lifetime'] = '10d'; 
    121 * replace database properties (db_type, db_host, db_user, db_pass, $d_name) 
    122   in /config/db.inc.php with the following line: 
    123   $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; 
    124 * add these lines to /config/db.inc.php 
    125   $rcmail_config['db_max_length'] = 512000; 
    126  
    127  
    128  
    129 from versions 0.1-alpha and 0.1-20050811 
    130 ---------------------------------------- 
    131 * replace index.php 
    132 * replace all files in folder /program/ 
    133 * replace all files in folder /skins/default/ 
    134 * run all commands in SQL/*.update-0.1a.sql or re-initalize database with *.initial.sql 
    135 * add these line to /config/main.inc.php 
    136   $rcmail_config['trash_mbox'] = 'Trash'; 
    137   $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); 
    138   $rcmail_config['prefer_html'] = TRUE; 
    139   $rcmail_config['prettydate'] = TRUE; 
    140   $rcmail_config['smtp_port'] = 25; 
    141   $rcmail_config['default_port'] = 143; 
    142   $rcmail_config['session_lifetime'] = 20; 
    143   $rcmail_config['skip_deleted'] = FALSE; 
    144   $rcmail_config['message_sort_col'] = 'date'; 
    145   $rcmail_config['message_sort_order'] = 'DESC'; 
    146   $rcmail_config['log_dir'] = 'logs/'; 
    147   $rcmail_config['temp_dir'] = 'temp/'; 
    148   $rcmail_config['message_cache_lifetime'] = '10d'; 
    149 * replace database properties (db_type, db_host, db_user, db_pass, $d_name) 
    150   in /config/db.inc.php with the following line: 
    151   $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; 
    152 * add these lines to /config/db.inc.php 
    153   $rcmail_config['db_max_length'] = 512000; 
    154  
     49   $rcmail_config['include_host_config'] = false; 
Note: See TracChangeset for help on using the changeset viewer.