From ba6e420e8d84f3a09b519ebb81764bc63a3886cc Mon Sep 17 00:00:00 2001
From: Amin Bandali <bandali@gnu.org>
Date: Sat, 24 Dec 2022 23:30:19 -0500
Subject: Add some dovecot sieve rules

---
 .config/dovecot/canonical.sieve | 48 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 .config/dovecot/canonical.sieve

(limited to '.config/dovecot')

diff --git a/.config/dovecot/canonical.sieve b/.config/dovecot/canonical.sieve
new file mode 100644
index 0000000..70ffe5f
--- /dev/null
+++ b/.config/dovecot/canonical.sieve
@@ -0,0 +1,48 @@
+require [ "regex", "variables", "fileinto", "envelope", "mailbox",
+  "imap4flags", "include" ];
+
+if address :is "from" "noreply+chat@canonical.com" {
+  fileinto :create "mattermost";
+  stop;
+}
+
+if address :is "from" "noreply+discourse@canonical.com" {
+  fileinto :create "discourse";
+  stop;
+}
+
+if address :is :domain "from" ["discourse.ubuntu.com", "forum.snapcraft.io"] {
+  fileinto :create "discourse";
+  stop;
+}
+
+if address :is "from" "jira@warthogs.atlassian.net" {
+  fileinto :create "jira";
+  stop;
+}
+
+if address :is :domain "from" "rt.canonical.com" {
+  fileinto :create "rt";
+  stop;
+}
+
+if address :matches :domain "from" ["launchpad.net", "*.launchpad.net"] {
+  fileinto :create "launchpad";
+  stop;
+}
+
+if address :is "from" "gitlab@salsa.debian.org" {
+  fileinto :create "salsa";
+  stop;
+}
+
+if address :is "from" "notifications@github.com" {
+  keep;
+  stop;
+}
+
+if header :regex "list-id" "<([a-z_0-9-]+)[.@]" {
+  set :lower "listname" "${1}";
+  fileinto :create "l.${listname}";
+  stop;
+}
-- 
cgit v1.2.3-83-g751a