Author Topic: Logo printed on email  (Read 6376 times)

Offline system_owner

  • Newbie
  • *
  • Posts: 4
Logo printed on email
« 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.

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: Logo printed on email
« Reply #1 on: August 20, 2014, 05:11:49 PM »
No there isn't an option for that.

Offline alec

  • Hero Member
  • *****
  • Posts: 1,365
Re: Logo printed on email
« Reply #2 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;

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: Logo printed on email
« Reply #3 on: August 21, 2014, 12:43:02 PM »
I didn't realize that, good to know!