2016-08-18 20:17:04 +02:00
|
|
|
require "variables";
|
|
|
|
require "vacation";
|
|
|
|
require "fileinto";
|
|
|
|
require "envelope";
|
|
|
|
require "mailbox";
|
|
|
|
require "imap4flags";
|
|
|
|
require "regex";
|
|
|
|
require "relational";
|
|
|
|
require "comparator-i;ascii-numeric";
|
|
|
|
require "vnd.dovecot.extdata";
|
2016-08-18 20:14:03 +02:00
|
|
|
|
2016-08-19 21:58:40 +02:00
|
|
|
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;
|
2016-08-18 20:14:03 +02:00
|
|
|
}
|
|
|
|
}
|
2016-04-20 21:20:02 +02:00
|
|
|
|
2016-05-29 15:54:53 +02:00
|
|
|
if string :is "${extdata.reply_enabled}" "1" {
|
2016-04-20 21:20:02 +02:00
|
|
|
vacation :days 1 :subject "${extdata.reply_subject}" "${extdata.reply_body}";
|
|
|
|
}
|
|
|
|
|
2016-05-29 15:54:53 +02:00
|
|
|
if string :is "${extdata.forward_enabled}" "1" {
|
2016-05-04 16:12:56 +02:00
|
|
|
redirect "${extdata.forward_destination}";
|
2016-04-20 21:20:02 +02:00
|
|
|
keep;
|
|
|
|
}
|