Mercurial > prosody-modules
annotate mod_s2soutinjection/README.markdown @ 4579:b305814bd930
mod_muc_dicebot: A thing to roll dice
Do you see what happens, Jitsi? Do you see what happens when you
make it hard for me to use a proper bot? This is what happens,
Jitsi. This is what happens when you meet a stranger in the alps!
Ahem. In all seriousness, this is more of a quick hack than
anything else. It will look for `.r` in MUC messages and if it
finds it, it'll interpret it as an instruction to roll a few
dice. Injects the results in the body of the message. Eats the
message alive if it is malformed.
author | Jonas Schäfer <jonas@wielicki.name> |
---|---|
date | Sat, 29 May 2021 15:17:05 +0200 |
parents | e3e76e9693a1 |
children | f4a9e804c457 |
rev | line source |
---|---|
1999 | 1 --- |
2 summary: S2S connection override | |
3 ... | |
4 | |
5 # Introduction | |
6 | |
7 This module is similar to [mod\_srvinjection] but less of an hack. | |
8 | |
9 # Configuration | |
10 | |
11 ``` lua | |
12 -- In the global section | |
13 | |
14 modules_enabled = { | |
15 --- your other modules | |
16 "s2soutinjection"; | |
17 } | |
18 | |
19 s2s_connect_overrides = { | |
20 -- This one will use the default port, 5269 | |
21 ["example.com"] = "xmpp.server.local"; | |
22 | |
23 -- To set a different port: | |
24 ["another.example"] = { "non-standard-port.example", 9999 }; | |
25 } | |
26 ``` | |
27 | |
28 # Compatibility | |
29 | |
30 Requires 0.9.x or later. |