tips

---

# vi /usr/share/roundcube/config/config.inc.php

$config['enable_installer'] = false;

Set default HTML editor roundcube

vi /etc/roundcubemail/config.inc.php

 root# /config/main.inc.php             change 

$config['htmleditor'] = 1;

Roundcube logo mail-in-a-box

Edit the /etc/roundcube/config.inc.php file:

// 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'] = "/images/roundcube_logo.png";

cd /usr/share/roundcubemail/skins/larry/images

cp -p roundcube_logo.png roundcube_logo.png.orig

Default logo of Roundcube 

$config['skin_logo'] = './mail-logo.png';

 logo for Roundcube

You just need to copy that image file by that name to /var/lib/roundcube/ispmail-logo.png. The logo should be 177×49 pixels large. Feel free to take this nifty ISPmail logo I crafted. 🙂

If the logo appears to be broken then make sure that the permissions are correct:

chmod a+r /var/lib/roundcube/mail-logo.png

Easy and Best Way to change your own logo for Rouncube Branding

# 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';

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'] = 'WorldCM Webmail';

“localhost” as a server. But let’s improve the configuration a litte. The “Server” is always “localhost”. So edit the /etc/roundcube/config.inc.php file and set:

$config['default_host'] = 'localhost';

Set up HTTP to HTTPS redirection

Redirect permanent / https://YOUR.MAIL.SERVER/

 lifetime in Roundcube is 10 minutes.

$config['session_lifetime'] = 60;

--