[bash]apt-get install git[/bash]
tick remote access too!
Client functions
Server functions
Mail user functions
Mail user filter functions
Mail alias functions
Mail forward functions
Mail fetchmail functions
Mail spamfilter user functions
Mail spamfilter policy functions
Mail spamfilter whitelist functions
Mail spamfilter blacklist functions
[bash]cd /tmp
git clone https://github.com/w2c/ispconfig3_roundcube.git
cd /tmp/ispconfig3_roundcube/
mv ispconfig3_* /var/lib/roundcube/plugins
cd /var/lib/roundcube/plugins
mv ispconfig3_account/config/config.inc.php.dist ispconfig3_account/config/config.inc.php[/bash]
[bash]nano ispconfig3_account/config/config.inc.php[/bash]
[bash]nano /etc/roundcube/config.inc.php[/bash]
[code language=”text”]$config[‘plugins’] = array(
"jqueryui", "ispconfig3_account", "ispconfig3_autoreply", "ispconfig3_pass", "ispconfig3_spam", "ispconfig3_fetchmail", "ispconfig3_filter", "ispconfig3_forward", "ispconfig3_wblist"
);[/code]
[bash]nano /var/lib/roundcube/plugins/ispconfig3_account/config/config.inc.php[/bash]
[code language=”text”]<?php
$config[‘identity_limit’] = false;
$config[‘remote_soap_user’] = ’roundcube’;
$config[‘remote_soap_pass’] = ‘yourpass’;
$config[‘soap_url’] = ‘https://192.168.1.1:8080/remote/’;
$config[‘soap_validate_cert’] = false;[/code]