mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-06-08 18:09:06 +02:00
Fixed sieve filters
This commit is contained in:
parent
b9209a815c
commit
86837313c2
2 changed files with 49 additions and 11 deletions
47
modules/mailserver/malka-sh.sieve
Normal file
47
modules/mailserver/malka-sh.sieve
Normal 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}";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue