changeset 4146:bebc5740fc16

mod_firewall: Add jabberspam-simple-blocklist.pfw and spam-blocklists.pfw
author Matthew Wild <mwild1@gmail.com>
date Sun, 20 Sep 2020 15:57:04 +0100
parents 837c4340653f
children 3a06dea21ea1
files mod_firewall/scripts/jabberspam-simple-blocklist.pfw mod_firewall/scripts/spam-blocklists.pfw
diffstat 2 files changed, 27 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_firewall/scripts/jabberspam-simple-blocklist.pfw	Sun Sep 20 15:57:04 2020 +0100
@@ -0,0 +1,17 @@
+# This is a simple ruleset to block all traffic from servers
+# on the JabberSPAM blocklist. Even traffic from existing user
+# contacts will be blocked.
+#
+# Example config (make sure "firewall" is in modules_enabled):
+#
+#   firewall_scripts = { "module:scripts/jabberspam-simple-blocklist.pfw" }
+#
+# For a more advanced ruleset, consider using spam-blocking.pfw
+# and spam-blocklists.pfw.
+
+%LIST blocklist: https://cdn.jsdelivr.net/gh/jabberspam/blacklist/blacklist.txt
+
+::deliver
+
+CHECK LIST: blocklist contains $<@from|host>
+BOUNCE=policy-violation (Your server is blocked due to spam)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_firewall/scripts/spam-blocklists.pfw	Sun Sep 20 15:57:04 2020 +0100
@@ -0,0 +1,10 @@
+# This script depends on spam-blocking.pfw also being loaded
+# Any traffic that is not explicitly blocked or allowed by other
+# rules will be checked against the JabberSPAM server blocklist
+
+%LIST blocklist: https://cdn.jsdelivr.net/gh/jabberspam/blacklist/blacklist.txt
+
+::user/spam_handle_unknown_custom
+
+CHECK LIST: blocklist contains $<@from|host>
+BOUNCE=policy-violation (Your server is blocked due to spam)