summaryrefslogtreecommitdiff
path: root/scripts/add_header.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/add_header.sh')
-rw-r--r--scripts/add_header.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/add_header.sh b/scripts/add_header.sh
new file mode 100644
index 0000000..9a9af75
--- /dev/null
+++ b/scripts/add_header.sh
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+################################################################################
+# PROXSMTP SAMPLE SCRIPT
+#
+# These sample scripts are to give you an idea of how to use proxsmtp
+# filtering. They are NOT intended for use on production servers.
+#
+# A simple proxsmtp script which replaces the subject line with one
+# containing the senders email address. Uses the 'formail' command
+# that comes with the 'procmail' package.
+#
+# Make sure the option 'FilterType' is set as follows:
+# FilterType: pipe
+#
+# See proxsmtpd.conf(5) for configuration details
+#
+
+# Pipe the email through this command
+formail -i "Subject: Changed subject from $SENDER ..."
+
+# Filter success
+exit 0 \ No newline at end of file