summaryrefslogtreecommitdiff
path: root/plugins/additional_message_headers/additional_message_headers.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-03-31 12:25:48 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-03-31 12:25:48 +0000
commite6d8f97bf2e0bbb4d95df0c4e030eb7ec6ef75a5 (patch)
tree4f6fdadb51cbe1a2bb3b2b06c9bcabb0429d1a84 /plugins/additional_message_headers/additional_message_headers.php
parent868c169e2a64c1d19a9b6bbcd98f268808dfd173 (diff)
Move plugins repository into roundcubemail root folder; svn:externals are not defined anymore
git-svn-id: https://svn.roundcube.net/trunk@6034 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/additional_message_headers/additional_message_headers.php')
-rw-r--r--plugins/additional_message_headers/additional_message_headers.php43
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 80c58d58b..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('message_outgoing_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;
- }
-}
-
-?>