I tried to use Service Discovery to find out what commands are supported by the xmpp-server as per XEP-0133 (https://xmpp.org/extensions/xep-0133.html#disco). The first request for general support tells me that Service Administration is supported. But when I try to get the supported commands I only get the configuration-command. The following image shows the response from the server.
Reply stanza from server
My ejabberd.yml has both mod_adhoc
and mod_announce
activated and the admin-account should be able to use the commands.
modules:
mod_adhoc: {}
mod_admin_extra: {}
mod_announce: # recommends mod_adhoc
access: announce
announce:
- allow: admin
admin:
user:
- "admin@localhost"
What else do I need to configure so that I get more disco#items for setting the Message of the Day etc.?