Roundcube Community Forum

 

Logo printed on email

Started by system_owner, August 20, 2014, 04:16:44 PM

Previous topic - Next topic

system_owner

I printed something for the first time with v1.0.2 last night and noticed that our logo got printed on it as well.

I found that the messageprint.html as the following code:

<div id="header"><roundcube:object name="logo" src="/images/roundcube_logo.png" id="toplogo" border="0" alto="Logo" /></div>


Without removing this code from the messageprint.html, is there a way to add a variable to the config.inc.php to make it configurable to turn off and on?


Thanks.

SKaero

No there isn't an option for that.

alec

Actually there is. You can set different logo on different page. So, you can point it to an empty image 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'] = null;

SKaero

I didn't realize that, good to know!