aports/config/rspamd/modules/force_actions.conf

74 lines
1.9 KiB
Plaintext
Raw Normal View History

force_actions {
rules {
2022-04-25 17:33:55 +00:00
ANY_FUZZY_DENIED_ACTION {
expression = "ANY_FUZZY_DENIED";
action = "reject";
2022-04-25 17:33:55 +00:00
message = "Mail matches fuzzy pattern";
}
2022-04-25 17:33:55 +00:00
DMARC_POLICY_REJECT_ACTION {
2022-03-24 06:20:17 +00:00
expression = "DMARC_POLICY_REJECT";
action = "reject";
2022-04-25 17:33:55 +00:00
message = "DMARC failed";
}
2022-04-25 17:33:55 +00:00
DMARC_POLICY_QUARANTINE_ACTION {
2022-03-24 06:20:17 +00:00
expression = "DMARC_POLICY_QUARANTINE";
action = "add header";
}
2022-04-25 17:33:55 +00:00
ARC_REJECT_ACTION {
2022-03-24 06:20:17 +00:00
expression = "ARC_REJECT";
action = "reject";
2022-04-25 17:33:55 +00:00
message = "ARC failed";
}
2022-04-25 17:33:55 +00:00
FORGED_ANY_ACTION {
2022-03-24 06:20:17 +00:00
expression = "FORGED_ANY";
action = "reject";
2022-04-25 17:33:55 +00:00
message = "You may not send mails with a forged/modified sender/reciever here.";
}
2022-04-25 17:33:55 +00:00
RBL_SPAMHAUS_DBL_ANY_ACTION {
expression = "RBL_SPAMHAUS_DBL_ANY";
action = "reject";
2022-04-25 17:33:55 +00:00
message = "Mail sender / contents are listed on SPAMHAUS DBL";
}
2022-04-25 17:33:55 +00:00
RBL_SPAMHAUS_DROP_ANY_ACTION {
2022-03-24 06:20:17 +00:00
expression = "RBL_SPAMHAUS_DROP_ANY";
action = "reject";
2022-04-25 17:33:55 +00:00
message = "Mail sender / contents are listed on SPAMHAUS DROP";
}
2022-04-25 17:33:55 +00:00
RBL_SPAMHAUS_XBL_ANY_ACTION {
2022-03-24 06:20:17 +00:00
expression = "RBL_SPAMHAUS_XBL_ANY";
action = "soft reject";
2022-04-25 17:33:55 +00:00
message = "Mail sender / contents are listed on SPAMHAUS XBL";
}
2022-04-25 17:33:55 +00:00
URIBL_BLACK_ACTION {
2022-03-24 06:20:17 +00:00
expression = "URIBL_BLACK";
2022-04-25 17:33:55 +00:00
action = "reject";
message = "You are listed on URIBL black";
}
2022-04-25 17:33:55 +00:00
URIBL_GREY_ACTION {
2022-03-24 06:20:17 +00:00
expression = "URIBL_GREY";
2022-04-25 17:33:55 +00:00
action = "soft reject";
message = "You are listed on URIBL grey";
}
2022-04-25 17:33:55 +00:00
RBL_MAILSPIKE_BAD_ACTION {
2022-03-24 06:20:17 +00:00
expression = "RBL_MAILSPIKE_BAD";
2022-04-25 17:33:55 +00:00
action = "soft reject";
message = "You are listed on Mailspike as bad";
}
2022-04-25 17:33:55 +00:00
RBL_MAILSPIKE_VERYBAD_ACTION {
2022-03-24 06:20:17 +00:00
expression = "RBL_MAILSPIKE_VERYBAD";
2022-04-25 17:33:55 +00:00
action = "reject";
message = "You are listed on Mailspike as very bad";
}
2022-04-25 17:33:55 +00:00
RBL_MAILSPIKE_WORST_ACTION {
2022-03-24 06:20:17 +00:00
expression = "RBL_MAILSPIKE_WORST";
2022-04-25 17:33:55 +00:00
action = "reject";
message = "You are listed on Mailspike as worst";
}
2022-04-25 17:33:55 +00:00
SPAMTRAP_ACTION {
2022-03-24 06:20:17 +00:00
expression = "SPAMTRAP";
2022-04-25 17:33:55 +00:00
action = "reject";
message = "Thank you kind sir";
}
2022-03-09 14:15:32 +00:00
}
2022-03-09 13:23:53 +00:00
}