Last active
March 31, 2022 11:07
-
-
Save renestalder/c6e0011d9fff5ea2b8d891f2133761b2 to your computer and use it in GitHub Desktop.
Personal Sieve Triaging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require ["fileinto", "extlists"]; | |
if anyof(header :contains "subject" "online purchase", header :contains "subject" "rechnung", header :contains "subject" "order", header :contains "subject" "artikel verschickt", header :contains "subject" "auftragsbestätigung", header :contains "subject" "sendung", header :contains "subject" "Bankdokumente") | |
{ | |
fileinto "Paper trail"; | |
} elsif anyof(exists "X-Gitlab-Issue-Id", address :is "from" ["[email protected]", "[email protected]"]) | |
{ | |
fileinto "Issues"; | |
} elsif anyof(exists "X-Gitlab-Pipeline-Status", address :is "from" "[email protected]") | |
{ | |
fileinto "Status"; | |
} elsif anyof(exists "X-Gitlab-Project-Id") | |
{ | |
fileinto "Issues"; | |
} elsif anyof(exists "list-unsubscribe", address :contains "to" "+") | |
{ | |
fileinto "Feed"; | |
} | |
elsif not header :list "from" ":addrbook:personal" | |
{ | |
# Checks that the sender is in your personal address book | |
fileinto "Screening"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment