diff options
author | till <till@php.net> | 2010-03-20 14:20:01 +0000 |
---|---|---|
committer | till <till@php.net> | 2010-03-20 14:20:01 +0000 |
commit | 63a3dc5fde5a3ceed4f03c19c5015aab19050bee (patch) | |
tree | 50aafccdad5fe36c59f10d194298c35f046afd2f /plugins/additional_message_headers/additional_message_headers.php | |
parent | 0f8ff20ae2e8c949d58b9ca02bda95e388f7d142 (diff) |
moved plugins
Diffstat (limited to 'plugins/additional_message_headers/additional_message_headers.php')
-rw-r--r-- | plugins/additional_message_headers/additional_message_headers.php | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/plugins/additional_message_headers/additional_message_headers.php b/plugins/additional_message_headers/additional_message_headers.php deleted file mode 100644 index 21016dd10..000000000 --- a/plugins/additional_message_headers/additional_message_headers.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -/** - * Additional Message Headers - * - * Very simple plugin which will add additional headers - * to or remove them from outgoing messages. - * - * Enable the plugin in config/main.inc.php and add your desired headers: - * $rcmail_config['additional_message_headers'] = array('User-Agent'); - * - * @version @package_version@ - * @author Ziba Scott - * @website http://roundcube.net - */ -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; - } -} - -?> |