aports/config/rspamd/modules/force_actions.conf

54 lines
1.2 KiB
Plaintext
Raw Normal View History

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