Updated description files and version info
| | |
| | | |
| | | 2007/05/17 (thomasb) |
| | | ---------- |
| | | - Updated Catalan, Russian, Portuguese and Chinese translations |
| | | - Updated Catalan, Russian, Portuguese, Slovak and Chinese translations |
| | | - Renamed localization folder for Chinese (Big5) |
| | | - Chanegd Slovenian language code from 'si' to 'sl' |
| | | - Added Sinhala (Sri-Lanka) localization |
| | | - Use global filters and bind username/ for Ldap searches (#1484159) |
| | | - Hide quota display if imap server does not support it |
| | | - Hide address groups if no LDAP servers configured |
| | | - Add link to message subjects (closes #1484257) |
| | | - Better SQL query for contact listing/search (closes #1484369) |
| | | |
| | | |
| | | 2007/05/13 (thomasb) |
| | |
| | | # mysql |
| | | > CREATE DATABASE roundcubemail; |
| | | > GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost |
| | | IDENTIFIED BY 'password'; |
| | | IDENTIFIED BY 'password'; |
| | | > quit |
| | | # mysql roundcubemail < SQL/mysql.initial.sql |
| | | |
| | |
| | | # mysql |
| | | > CREATE DATABASE roundcubemail DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; |
| | | > GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost |
| | | IDENTIFIED BY 'password'; |
| | | IDENTIFIED BY 'password'; |
| | | > quit |
| | | |
| | | # mysql roundcubemail < SQL/mysql5.initial.sql |
| | |
| | | |
| | | UPGRADING |
| | | ========= |
| | | |
| | | If you already have a previous version of RoundCube installed, |
| | | please refer to the instructions in UPGRADING guide. |
| | | |
| | |
| | | -- RoundCube Webmail initial database structure |
| | | -- Version 0.1-beta2 |
| | | -- Version 0.1-rc1 |
| | | -- |
| | | |
| | | -- -------------------------------------------------------- |
| | |
| | | -- RoundCube Webmail initial database structure |
| | | -- Version 0.1-beta2 |
| | | -- Version 0.1-rc1 |
| | | -- |
| | | |
| | | -- -------------------------------------------------------- |
| | |
| | | /* |
| | | +-----------------------------------------------------------------------+ |
| | | | RoundCube Webmail IMAP Client | |
| | | | Version 0.1-20070428 | |
| | | | Version 0.1-20070517 | |
| | | | | |
| | | | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland | |
| | | | Licensed under the GNU GPL | |
| | |
| | | */ |
| | | |
| | | // application constants |
| | | define('RCMAIL_VERSION', '0.1-20070428'); |
| | | define('RCMAIL_VERSION', '0.1-20070517'); |
| | | define('RCMAIL_CHARSET', 'UTF-8'); |
| | | define('JS_OBJECT_NAME', 'rcmail'); |
| | | |