This repository has been archived on 2020-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-dovecot/templates/default.sieve.j2

11 lines
241 B
Plaintext
Raw Normal View History

require ["fileinto","mailbox"];
if anyof(
header :contains ["X-Spam-Flag"] "YES",
header :contains ["X-Spam-Status"] "spam",
header :contains ["X-Spam"] "Yes",
header :contains ["Subject"] "*** SPAM ***"
)
2020-08-09 09:46:18 +00:00
{
fileinto :create "Junk";
2020-08-09 09:46:18 +00:00
}