fix(prosody): remove admin_adhoc module from defaults (#1948)

* fix(prosody): remove admin_adhoc module from defaults

* also remove dialback module

* further pruning
pull/1950/head
Aaron van Meerten 1 month ago committed by GitHub
parent 4ae743859f
commit 26b6f274fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      prosody/rootfs/defaults/prosody.cfg.lua

@ -96,13 +96,11 @@ modules_enabled = {
--"compression"; -- Stream compression (Debian: requires lua-zlib module to work) --"compression"; -- Stream compression (Debian: requires lua-zlib module to work)
-- Admin interfaces -- 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 --"admin_telnet"; -- Opens telnet console interface on localhost port 5582
-- Nice to have -- Nice to have
"version"; -- Replies to server version requests "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 }} {{- end }}
"ping"; -- Replies to XMPP pings with pongs "ping"; -- Replies to XMPP pings with pongs
{{- if eq $PROSODY_MODE "visitors" }} {{- if eq $PROSODY_MODE "visitors" }}
@ -126,7 +124,6 @@ modules_enabled = {
"secure_interfaces"; "secure_interfaces";
{{ end -}} {{ end -}}
{{ if $ENABLE_S2S -}} {{ if $ENABLE_S2S -}}
"dialback"; -- s2s dialback support
"s2s_bidi"; "s2s_bidi";
"certs_s2soutinjection"; "certs_s2soutinjection";
"s2sout_override"; "s2sout_override";

Loading…
Cancel
Save