summaryrefslogtreecommitdiff
path: root/plugins/additional_message_headers/additional_message_headers.php
diff options
context:
space:
mode:
authortill <till@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-20 14:20:01 +0000
committertill <till@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-20 14:20:01 +0000
commit8660a74501de5ee206f6c14246f7112e6ea91ad3 (patch)
tree1e67a0bcc9ebe254d6f0c21eb07728216f5b3149 /plugins/additional_message_headers/additional_message_headers.php
parent85de1261ba60e3df477a49a15de8471f79d2946a (diff)
moved plugins
git-svn-id: https://svn.roundcube.net/trunk@3394 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, 43 insertions, 0 deletions
diff --git a/plugins/additional_message_headers/additional_message_headers.php b/plugins/additional_message_headers/additional_message_headers.php
new file mode 100644
index 000000000..21016dd10
--- /dev/null
+++ b/plugins/additional_message_headers/additional_message_headers.php
@@ -0,0 +1,43 @@
+<?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;
+ }
+}
+
+?>