summaryrefslogtreecommitdiff
path: root/test/aux-fixed
diff options
context:
space:
mode:
Diffstat (limited to 'test/aux-fixed')
-rw-r--r--test/aux-fixed/0950.sieve12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/aux-fixed/0950.sieve b/test/aux-fixed/0950.sieve
new file mode 100644
index 000000000..2f7b08d74
--- /dev/null
+++ b/test/aux-fixed/0950.sieve
@@ -0,0 +1,12 @@
+# Sieve filter
+#
+
+require "fileinto";
+
+if header :contains "from" "coyote" {
+ discard;
+} elsif header :contains "from" "spot_this" {
+ fileinto "myfolder";
+} elsif header :contains "from" "redirect" {
+ redirect "fred@some_other_dom.ain";
+}