Changes between Version 6 and Version 7 of Roundcube


Ignore:
Timestamp:
02/11/14 21:04:26 (10 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Roundcube

    v6 v7  
    1616}}}
    1717
    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}}}
    2122
    2223{{{
    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
     24CREATE DATABASE roundcubemail_<web> DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
     25GRANT ALL PRIVILEGES ON roundcubemail_<web>.* TO roundcube@localhost IDENTIFIED BY '<password>';
     26quit
    2927}}}
    3028
    31 '''START CLIENT INSTALLTION HERE'''
     29{{{
     30mysql -uroot -p roundcubemail_<web> < /var/www/<web>/web/roundcube/SQL/mysql.initial.sql
     31}}}
     32
     33in /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}}}
     38in /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
     43see http://trac.roundcube.net/wiki/Howto_Install
     44
     45'''OLD (0.3.1) START CLIENT INSTALLTION HERE'''
    3246
    3347follow the information provided by the ebuild[[BR]]