Author Topic: Global disclaimer  (Read 2572 times)

Offline zinkus

  • Newbie
  • *
  • Posts: 2
Global disclaimer
« on: August 01, 2018, 04:11:48 PM »
Is it possible to add global footer (disclaimer) to all outgoing messages from all users?

Online SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Global disclaimer
« Reply #1 on: August 02, 2018, 01:23:30 AM »
You can set the following options in the Roundcube config:
Code: [Select]
// path to a text file which will be added to each sent message
// paths are relative to the Roundcube root folder
$config['generic_message_footer'] = '';

// path to a text file which will be added to each sent HTML message
// paths are relative to the Roundcube root folder
$config['generic_message_footer_html'] = '';

Offline zinkus

  • Newbie
  • *
  • Posts: 2
Re: Global disclaimer
« Reply #2 on: August 02, 2018, 02:17:58 AM »
Thank you.
It was very helpfull.

As always I did not RFM :)

p.s.:

Where I can find all config.inc.php options?

Offline alec

  • Hero Member
  • *****
  • Posts: 1,363
Re: Global disclaimer
« Reply #3 on: August 02, 2018, 05:20:01 AM »
In defaults.inc.php. Plugins will have it's options usually in config.inc.php.dist in the plugin folder.