Skip to main content

CWP: Configuring Default Installed Roundcube Plugins after CentOS WebPanel Fresh Installation

There are some (Probably 4) Roundcube Plugins will be installed automatically when you install CWP that's need to be configured. Go to Line number 79,
# vi /usr/local/cwpsrv/var/services/roundcube/config/config.inc.php

 $config['plugins'] = array(    
   'archive',    
   'zipdownload',    
   'managesieve',    
   'password',
 );
So it would look like the following (From Line number 79):
1.There is no config.inc.php file in archive plugin directory. So no need to configure the 'archive' plugin.
2.Configuring the 'zipdownload' plugin
# cd /usr/local/cwpsrv/var/services/roundcube/plugins/
cp -p zipdownload/config.inc.php.dist zipdownload/config.inc.php
3.Configuring the 'managesieve' plugin
# cd /usr/local/cwpsrv/var/services/roundcube/plugins/
cp -p managesieve/config.inc.php.dist managesieve/config.inc.php
4.Configuring the 'password' plugin
# cd /usr/local/cwpsrv/var/services/roundcube/plugins/
cp -p password/config.inc.php.dist password/config.inc.php
Go to the Plugin directory and list all the plugins
# cd /usr/local/cwpsrv/var/services/roundcube/plugins/
# ll
You can check all plugins from the plugins directory.
This post is based on this article.
Link 1
Link 2

Comments