summaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2012-01-14 12:38:50 -0500
committerMicah Anderson <micah@riseup.net>2012-01-14 12:38:50 -0500
commit292f4973548cfee1786b29c5376b9abd1f3cc213 (patch)
treeb7dd7740092a8c994a02607ee847113e75d8dfb7 /files
parent5226583c8c6ecd74d0621b2b61e56ab9f98bcb6c (diff)
add capability to sieve for sequential before/after scripts and ship some default ones
Diffstat (limited to 'files')
-rw-r--r--files/sieve/after.sieve5
-rw-r--r--files/sieve/before.sieve1
2 files changed, 6 insertions, 0 deletions
diff --git a/files/sieve/after.sieve b/files/sieve/after.sieve
new file mode 100644
index 0000000..610d0d1
--- /dev/null
+++ b/files/sieve/after.sieve
@@ -0,0 +1,5 @@
+# for sequential sieve scripts, this one is the after_sieve
+# keep is implicit, but it seems that only explicit fileinto actions
+# are logged and not the implicit keep action, so we specify it explicitly
+fileinto "INBOX";
+stop;
diff --git a/files/sieve/before.sieve b/files/sieve/before.sieve
new file mode 100644
index 0000000..4884529
--- /dev/null
+++ b/files/sieve/before.sieve
@@ -0,0 +1 @@
+# for sequential sieve scripts, this one is the before_sieve