diff options
author | Matthew Fennell <matthew@fennell.dev> | 2025-08-11 12:59:18 +0100 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2025-08-11 12:59:18 +0100 |
commit | ebd06e5a5eefe3b4b05f648b684f4b0360c29e70 (patch) | |
tree | ea17367a08d359708e9e9e763274cad0d9d88251 | |
parent | 4abeb804094c9bfa3b4a87a53018cbdc2f7a6f6a (diff) |
Enable extra modules available in prosody 13
I took the opportunity to look through the module list and add some
extra ones that were missing before.
-rw-r--r-- | files/prosody.cfg.lua.j2 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/files/prosody.cfg.lua.j2 b/files/prosody.cfg.lua.j2 index 2653713..4b67544 100644 --- a/files/prosody.cfg.lua.j2 +++ b/files/prosody.cfg.lua.j2 @@ -5,6 +5,7 @@ plugin_paths = { "/usr/local/lib/prosody/modules" } modules_enabled = { + "account_activity"; "admin_adhoc"; "admin_shell"; "blocklist"; @@ -12,12 +13,14 @@ modules_enabled = { "bosh"; "carbons"; "cloud_notify"; + "component"; "csi_battery_saver"; "dialback"; "disco"; "external_services"; "http"; "http_libjs"; + "lastactivity"; "limits"; "mam"; "mimicking"; @@ -26,6 +29,8 @@ modules_enabled = { "private"; "proxy65"; "roster"; + "s2s_auth_dane_in"; + "s2s_bidi"; "sasl2"; "sasl2_bind2"; "sasl2_fast"; @@ -33,6 +38,7 @@ modules_enabled = { "sasl_ssdp"; "saslauth"; "server_contact_info"; + "server_info"; "smacks"; "stanza_debug"; "time"; |