2024-04-04 11:55:57 +01:00
|
|
|
require ["fileinto","mailbox"];
|
2024-04-04 11:24:04 +01:00
|
|
|
|
|
|
|
# Handle rspamd output
|
|
|
|
if header :contains "X-Spam-Status" "Yes"
|
|
|
|
{
|
|
|
|
fileinto :create "Spam";
|
|
|
|
stop;
|
|
|
|
}
|
|
|
|
if exists ["X-Spam-Bar"]
|
|
|
|
{
|
|
|
|
fileinto :create "Spam.ToClassify";
|
|
|
|
stop;
|
|
|
|
}
|