Mercurial > prosody-modules
view mod_server_contact_info/README.markdown @ 3000:02fc3b64cbb7
Initial commit of mod_slack_webhooks.
This provides an HTTP-based interface to and from Prosody-hosted MUCs
equivalent to Slack's incoming and outgoing webhook interfaces, allowing
a variety of Slack integrations to be used with a Prosody MUC.
author | Nathan Whitehorn <nwhitehorn@physics.ucla.edu> |
---|---|
date | Sun, 15 Apr 2018 08:45:43 -0700 |
parents | 44e5adbb6ac0 |
children |
line wrap: on
line source
--- labels: - 'Stage-Beta' summary: Contact Addresses for XMPP Services --- Introduction ============ This module lets you advertise various contact addresses for your XMPP service via [XEP-0157]. Configuration ============= Various types of contact addresses can be set via the single table option `contact_info`. Each field is either a string or a list of strings. Each string should be an URI. An example showing all possible fields: ``` {.lua} contact_info = { abuse = { "mailto:abuse@shakespeare.lit", "xmpp:abuse@shakespeare.lit" }; admin = { "mailto:admin@shakespeare.lit", "xmpp:admin@shakespeare.lit" }; feedback = { "http://shakespeare.lit/feedback.php", "mailto:feedback@shakespeare.lit", "xmpp:feedback@shakespeare.lit" }; sales = { "xmpp:bard@shakespeare.lit" }; security = { "xmpp:security@shakespeare.lit" }; support = { "http://shakespeare.lit/support.php", "xmpp:support@shakespeare.lit" }; }; ``` If not set, the `admins` option will be used. Compatibility ============= ------ --------------- 0.10 works 0.9 works 0.8 does not work ------ ---------------