From 26b6f274fe56be601a13aefe4a74ddeb03526d75 Mon Sep 17 00:00:00 2001 From: Aaron van Meerten Date: Tue, 22 Oct 2024 12:23:19 -0500 Subject: [PATCH] fix(prosody): remove admin_adhoc module from defaults (#1948) * fix(prosody): remove admin_adhoc module from defaults * also remove dialback module * further pruning --- prosody/rootfs/defaults/prosody.cfg.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/prosody/rootfs/defaults/prosody.cfg.lua b/prosody/rootfs/defaults/prosody.cfg.lua index e253c77..d3215df 100644 --- a/prosody/rootfs/defaults/prosody.cfg.lua +++ b/prosody/rootfs/defaults/prosody.cfg.lua @@ -96,13 +96,11 @@ modules_enabled = { --"compression"; -- Stream compression (Debian: requires lua-zlib module to work) -- Admin interfaces - "admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands + -- "admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands --"admin_telnet"; -- Opens telnet console interface on localhost port 5582 -- Nice to have "version"; -- Replies to server version requests - "uptime"; -- Report how long server has been running - "time"; -- Let others know the time here on this server {{- end }} "ping"; -- Replies to XMPP pings with pongs {{- if eq $PROSODY_MODE "visitors" }} @@ -126,7 +124,6 @@ modules_enabled = { "secure_interfaces"; {{ end -}} {{ if $ENABLE_S2S -}} - "dialback"; -- s2s dialback support "s2s_bidi"; "certs_s2soutinjection"; "s2sout_override";