Fixed sieve filters

This commit is contained in:
Luj 2023-01-26 20:50:52 +01:00
parent b9209a815c
commit 86837313c2
Signed by: luj
GPG key ID: 6FC74C847011FD83
2 changed files with 49 additions and 11 deletions

View file

@ -0,0 +1,47 @@
require ["variables", "fileinto", "envelope", "subaddress", "mailbox"];
# rule:[FRnOG]
if allof (header :contains "subject" "[FRnOG]")
{
fileinto "INBOX.FRnOG";
}
# rule:[dn42]
if allof (header :contains "subject" "[dn42]")
{
fileinto "INBOX.dn42";
}
# rule:[Lobsters]
if allof (header :is "to" "lobsters-hQ3nfqM88Q@lobste.rs")
{
fileinto "INBOX.Lobsters";
}
# rule:[Fosdem]
if allof (header :contains "subject" "[devroom-managers]")
{
fileinto "INBOX.FOSDEM";
}
# rule:[Promox]
if allof (header :contains "subject" "[pve-devel]")
{
fileinto "INBOX.Proxmox";
}
# rule:[Github]
if allof (header :contains "from" "notifications@github.com")
{
fileinto "INBOX.Github";
}
# rule:[Netdata]
if allof (header :contains "from" "netdata")
{
fileinto "INBOX.Netdata";
}
#rule:[Lol]
if header :matches "X-Original-To" "*@malka.sh" {
set "name" "${1}";
}
if string :is "${name}" "" {
fileinto "INBOX";
} else {
fileinto :create "INBOX.${name}";
}