aports/config/rspamd/modules/force_actions.conf

74 lines
1.8 KiB
Plaintext
Raw Normal View History

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