You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roundcubemail/plugins/additional_message_headers/additional_message_headers.php

42 lines
939 B
PHP

<?php
/**
* Additional Message Headers
*
* Very simple plugin which will add additional headers to or remove them from outgoing messages.
*
* @version 1.1
* @author Ziba Scott
* @website http://roundcube.net
*
* See config.inc.php.disc
*/
class additional_message_headers extends rcube_plugin
{
public $task = 'mail';
function init()
{
$this->add_hook('outgoing_message_headers', array($this, 'message_headers'));
}
function message_headers($args)
{
$this->load_config();
// additional email headers
$additional_headers = rcmail::get_instance()->config->get('additional_message_headers',array());
foreach($additional_headers as $header=>$value){
if (null === $value) {
unset($args['headers'][$header]);
} else {
$args['headers'][$header] = $value;
}
}
return $args;
}
}
?>