Fix spam filtering when the score is negative
This commit is contained in:
@@ -9,14 +9,15 @@ require "relational";
|
|||||||
require "comparator-i;ascii-numeric";
|
require "comparator-i;ascii-numeric";
|
||||||
require "vnd.dovecot.extdata";
|
require "vnd.dovecot.extdata";
|
||||||
|
|
||||||
if string :is "${extdata.spam_enabled}" "1" {
|
if allof (string :is "${extdata.spam_enabled}" "1",
|
||||||
if header :matches "X-Spam-Status" "* score=*" {
|
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}" {
|
if string :value "ge" :comparator "i;ascii-numeric" "${2}" "${extdata.spam_threshold}" {
|
||||||
setflag "\\seen";
|
setflag "\\seen";
|
||||||
fileinto :create "Junk";
|
fileinto :create "Junk";
|
||||||
stop;
|
stop;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if string :is "${extdata.reply_enabled}" "1" {
|
if string :is "${extdata.reply_enabled}" "1" {
|
||||||
|
|||||||
Reference in New Issue
Block a user