Skip to main content

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/roundcube
# vi config/config.inc.php

$config['support_url'] = 'https://datahead.biz/support/';
$config['product_name'] = 'DataHead Webmail';
Roundcube Login Form Branding
Easy and Best Way to change your own logo for Rouncube Branding

Go to The Following directory
# cd /usr/local/cwpsrv/var/services/roundcube/config
# vi defaults.inc.php

// replace Roundcube logo with this image
// specify an URL relative to the document root of this Roundcube installation
// an array can be used to specify different logos for specific template files, '*' for default logo
// for example array("*" => "/images/roundcube_logo.png", "messageprint" => "/images/roundcube_logo_print.png")
$config['skin_logo'] = 'https://www.google.com/images/logos/google_logo_41.png';

Roundcube Login Form Branding Code
Changing Roundcube Title & Add Support URL
# cd /usr/local/cwpsrv/var/services/roundcube

# vi config/defaults.inc.php
// provide an URL where a user can get support for this Roundcube installation
// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
$config['support_url'] = 'https://datahead.biz/support/';

// Name your service. This is displayed on the login screen and in the window title
$config['product_name'] = 'DataHead Webmail';

CWP Changing Roundcube Logo

This post is based on this article.
Link 1
Link 2
Link 2

Comments