diff options
author | Matthew Fennell <matthew@fennell.dev> | 2025-08-11 14:08:04 +0100 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2025-08-11 14:08:04 +0100 |
commit | bde5d94e28e7741ed3ef723e97d9df18570255af (patch) | |
tree | b3f666bb161f4a61ad7d3f900de7dd4e0e102f38 | |
parent | a97eb5541afd8287f66ae70ffb720b554a5bb467 (diff) |
Add some extra antispam modules
While looking through the list of available prosody-modules, these two
seemed useful.
-rw-r--r-- | files/prosody.cfg.lua.j2 | 1 | ||||
-rw-r--r-- | files/virtual_host.cfg.lua.j2 | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/files/prosody.cfg.lua.j2 b/files/prosody.cfg.lua.j2 index 320285a..ec66d5d 100644 --- a/files/prosody.cfg.lua.j2 +++ b/files/prosody.cfg.lua.j2 @@ -50,6 +50,7 @@ modules_enabled = { "vcard4"; "vcard_legacy"; "version"; + "watch_spam_reports"; } modules_disabled = { } diff --git a/files/virtual_host.cfg.lua.j2 b/files/virtual_host.cfg.lua.j2 index 4f5b7ca..5b9ec3e 100644 --- a/files/virtual_host.cfg.lua.j2 +++ b/files/virtual_host.cfg.lua.j2 @@ -41,6 +41,7 @@ Component "conference.{{ virtual_host }}" "muc" modules_enabled = { "muc"; "muc_mam"; + "muc_moderation"; "muc_rtbl"; } |