Skip to main content

Posts

CWP: How to upgrade from RoundCube Mail Version 1.2.3 to RoundCube Mail Version 1.3.8

The new Version of Roundcube 1.3 have clear Interface with modern look also in this version some major security holes were fixed. It is recommended to update the roundcube to latest version. Under latest version you can also configure calendar plugin faultlessly which are available on roundcube plugins site. PHP Configuration As any other PHP application some of its aspects depend on PHP settings. You should use php.ini or .htaccess (Apache module) or .user.ini (CGI/FastCGI SAPI) depending on your server setup. Roundcube when running will check most critical settings, try to set them and let you know if something's wrong. Here's a minimal list of settings that you might need to use (with suggested value): # vi /usr/local/php/php.ini # vi /usr/local/cwp/php71/php.ini Memory limit: memory_limit=64M , Options that control logging: display_errors=Off, log_errors=On, error_log=logs/errors.log , Options that control file uploads (e.g. max attachment size): upload_max_filesize

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

CWP: How to enable Vacation Option in Rouncube Webmail using managesieve

By default 'managesieve' plugin is enabled in CentOS Webpanel (CWP) Rouncube's Plugins array . And we need to ensure that the 'managesieve plugin is enable by do the following  (Go to Line number 79) ,  If not then add the plugin manually  # 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) : Configuring the 'managesieve' plugin # cd /usr/local/cwpsrv/var/services/roundcube/plugins/ # cp -p managesieve/config.inc.php.dist managesieve/config.inc.php # vi managesieve/config.inc.php // Enables separate management interface for vacation responses (out-of-office) // 0 - no separate section (default), // 1 - add Vacation section, // 2 - add Vacation section, but hide Filters section $config['managesieve_vacation'] = 1; Her