|
|
|
@ -9,15 +9,16 @@ require "relational";
|
|
|
|
|
require "comparator-i;ascii-numeric";
|
|
|
|
|
require "vnd.dovecot.extdata";
|
|
|
|
|
|
|
|
|
|
if string :is "${extdata.spam_enabled}" "1" {
|
|
|
|
|
if header :matches "X-Spam-Status" "* score=*" {
|
|
|
|
|
if allof (string :is "${extdata.spam_enabled}" "1",
|
|
|
|
|
not header :matches "X-Spam-Status" "* score=-*",
|
|
|
|
|
header :matches "X-Spam-Status" "* score=*")
|
|
|
|
|
{
|
|
|
|
|
if string :value "ge" :comparator "i;ascii-numeric" "${2}" "${extdata.spam_threshold}" {
|
|
|
|
|
setflag "\\seen";
|
|
|
|
|
fileinto :create "Junk";
|
|
|
|
|
stop;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if string :is "${extdata.reply_enabled}" "1" {
|
|
|
|
|
vacation :days 1 :subject "${extdata.reply_subject}" "${extdata.reply_body}";
|
|
|
|
|