[Dovecot] Add sieve rule to move DeltaChat (https://delta.chat) messages to folder DeltaChat

[Web] Add information about extended DNS config
This commit is contained in:
andryyy
2021-01-14 09:38:56 +01:00
parent 00723631dd
commit 3dece1a05c
4 changed files with 15 additions and 0 deletions

View File

@@ -1,2 +1,14 @@
# global_sieve_before script
# global_sieve_before -> user sieve_before (mailcow UI) -> user sieve_after (mailcow UI) -> global_sieve_after
require "fileinto";
require "mailbox";
if header :contains ["Chat-Version"] [""] {
if mailboxexists "DeltaChat" {
fileinto "DeltaChat";
} else {
fileinto :create "DeltaChat";
}
stop;
}