Mercurial > prosody-modules
view mod_discoitems/README.markdown @ 5256:44f7edd4f845
mod_http_oauth2: Reject non-local hosts in more code paths
We're not issuing tokens for users on remote hosts, we can't even
authenticate them since they're remote. Thus the host is always the
local module.host so no need to pass around the host in most cases or
use it for anything but enforcing the same host.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 16 Mar 2023 17:52:10 +0100 |
parents | 4d73a1a6ba68 |
children |
line wrap: on
line source
--- labels: - 'Stage-Beta' summary: Manually override the list of service discovery items ... Introduction ============ This Prosody plugin lets you manually override the service discovery items for a host. Usage ===== Simply add `"discoitems"` to your modules\_enabled list. Then add the `disco_items` option to hosts for which you wish to override the default response. Note: mod\_disco in Prosody 0.8+ supports the `disco_items` option; this plugin changes the behavior from appending items to replacing items Configuration ============= The `disco_items` option can be added to relevant hosts: disco_items = { {"proxy.eu.jabber.org", "Jabber.org SOCKS5 service"}; {"conference.jabber.org", "The Jabber.org MUC"}; } The format for individual items is `{JID, display-name}`. The display-name can be omitted: `{JID}`. Compatibility ============= ----- ------------- 0.8 Works 0.7 Works 0.6 Works 0.5 Should work ----- -------------