Changes between Version 6 and Version 7 of Roundcube
- Timestamp:
- 02/11/14 21:04:26 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Roundcube
v6 v7 16 16 }}} 17 17 18 19 '''THINK THIS IS OLD INFO:''' 20 roundcube is not in official portage yet but should be in the webapps overlay therefor we need layman[[BR]] 18 ''' NEW VERSION (0.9.5) - OLD VERSION (0.3.1) see below ''' 19 {{{ 20 # mysql -uroot -p 21 }}} 21 22 22 23 {{{ 23 # emerge subversion layman 24 # layman -a webapps-experimental 25 # echo source /usr/portage/local/layman/make.conf >> /etc/make.conf 26 # echo mail-client/roundcube ~* >> /etc/portage/package.keywords 27 # echo mail-client/roundcube mysql vhosts >> /etc/portage/package.use 28 # emerge roundcube 24 CREATE DATABASE roundcubemail_<web> DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; 25 GRANT ALL PRIVILEGES ON roundcubemail_<web>.* TO roundcube@localhost IDENTIFIED BY '<password>'; 26 quit 29 27 }}} 30 28 31 '''START CLIENT INSTALLTION HERE''' 29 {{{ 30 mysql -uroot -p roundcubemail_<web> < /var/www/<web>/web/roundcube/SQL/mysql.initial.sql 31 }}} 32 33 in /var/www/<web>/web/roundcube/config/main.inc.php change[[BR]] 34 {{{ 35 $rcmail_config['default_host'] = 'ssl://localhost'; 36 $rcmail_config['default_port'] = 993; 37 }}} 38 in /var/www/<web>/web/roundcube/config/db.inc.php change[[BR]] 39 {{{ 40 $rcmail_config['db_dsnw'] = 'mysql://roundcube:<password>@localhost/roundcubemail_<web>'; 41 }}} 42 43 see http://trac.roundcube.net/wiki/Howto_Install 44 45 '''OLD (0.3.1) START CLIENT INSTALLTION HERE''' 32 46 33 47 follow the information provided by the ebuild[[BR]]