Skip to main content

Posts

CWP: How to Install new Theme (Roundcube Plus free skins ) for Roundcube

Visit the following website  https://roundcubeplus.com/portfolio for Roundcube Theme and select ' Skin - Litecube Free' and Follow the next procedure to download. After  successfully registration, You will get the License key and download link . $config['license_key'] = 'RCP-wZpzy---xrq8'; In order to use the skins or plugins, you must add your license key to the Roundcube config file. Edit the file config/config.inc.php and place this line at the end: # vi /usr/local/cwpsrv/var/services/roundcube/config/config.inc.php $config['license_key'] = 'RCP-wZpzy---xrq8'; Roundcube Plus free skins add a new look to the Roundcube program. They are simplified versions of their commercial counterparts: they don't include the mobile support. Installation steps 1. Upload the tar.gz file to /usr/local/src directory 2. Copy the directories 'skins' and 'plugins' to the directory where your Roundcube is installed. # cd /usr/loc

CWP: How to Add/Enable Roundcube Plugins

Go to bottom of the configuration file of  /usr/local/cwpsrv/var/services/roundcube/config/config.inc.php there is a list of plugins that Roundcube loads. The “archive”  ,  “zipdownload”   ,  “managesieve” and   “password”  plugins are already enabled. 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. Add the “markasjunk” ,    “emoticons” and   “new_user_dialog”  plugins so that the setting looks like this: # vi /usr/local/cwpsrv/var/services/roundcube/config/config.inc.php $config['plugins'] = array(    'archive',    'zipdownload',    'managesieve',    'password',    'rcguard',   'markasjunk',    'emoticons',    'new_user_dialog', ); Plugin emoticons add smileys, and is responsible for the markasjunk plugin adds a toolbar button that moves the email to the Spam

CWP: How to Change Roundcube Theme

Easy and Best Way to Change Roundcube Theme Go to The Following directory Step: 1 # cd /usr/local/cwpsrv/var/services/roundcube/config # vi defaults.inc.php Step: 2 # cd /usr/local/cwpsrv/var/services/roundcube/config # vi config.inc.php

CWP: How to install composer.phar or Could not open input file: composer.phar (solved)

Go to your Roundcube Directory # cd /usr/local/cwpsrv/var/services/roundcube # php composer.phar install Could not open input file: composer.phar # composer --version -bash: composer: command not found # curl -sS https://getcomposer.org/installer | php # php composer.phar install # curl -sS https://getcomposer.org/installer | php # mv composer.phar /usr/local/bin/composer.phar # alias composer='/usr/local/bin/composer.phar' # composer --version This post is based on this article. Link 1 Link 2

CWP: Customize Roundcube Webclient for Branding!

Roundcube is an open source webmail client. And out of all the opensource webmail clients it probably is one of the best. Many hosting packages come with an option to install of use roundcube. Changing Roundcube Logo # cd /usr/local/cwpsrv/var/services/roundcube/skins/ larry /images # cp -p roundcube_logo.png roundcube_logo.png.orig Upload your own logo here with named roundcube_logo.png and Replace the existing & Give the following Permission # chown -R cwpsvc:cwpsvc roundcube_logo.png Changing Roundcube Favicon  # cd /usr/local/cwpsrv/var/services/roundcube/skins/ larry /images # cp -p favicon.ico favicon.ico.orig Upload your own Favicon here with named favicon.ico and Replace the existing & Give the Following Permission # chown -R cwpsvc:cwpsvc favicon.ico And Finally Do the same thing for this location # cd /usr/local/cwpsrv/var/services/roundcube/skins/ classic /images Changing Roundcube Title & Add Support URL # cd /usr/local/cwpsrv/var/services/roundcu