Roundcube Community Forum

Release Support => Release Discussion => Topic started by: system_owner on August 20, 2014, 04:16:44 PM

Title: Logo printed on email
Post by: system_owner on August 20, 2014, 04:16:44 PM
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.
Title: Re: Logo printed on email
Post by: SKaero on August 20, 2014, 05:11:49 PM
No there isn't an option for that.
Title: Re: Logo printed on email
Post by: alec on August 21, 2014, 03:11:28 AM
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;
Title: Re: Logo printed on email
Post by: SKaero on August 21, 2014, 12:43:02 PM
I didn't realize that, good to know!