Software /
code /
verse
Annotate
plugins/receipts.lua @ 499:57417c37d018
util.adhoc: Fix naming of thing
If it's a verse-specific thing it shouldn't be in the prosody namespace,
and there was already a change to use it in the verse namespace.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 23 Jun 2023 12:16:09 +0200 |
parent | 319:12b0e5cc72bf |
rev | line source |
---|---|
319 | 1 local verse = require"verse"; |
2 local xmlns_receipts = "urn:xmpp:receipts"; | |
3 | |
4 function verse.plugins.receipts(stream) | |
5 stream:add_plugin("disco"); | |
6 local function send_receipt(stanza) | |
7 if stanza:get_child("request", xmlns_receipts) then | |
8 stream:send(verse.reply(stanza) | |
9 :tag("received", { xmlns = xmlns_receipts, id = stanza.attr.id })); | |
10 end | |
11 end | |
12 | |
13 stream:add_disco_feature(xmlns_receipts); | |
14 stream:hook("message", send_receipt, 1000); | |
15 end | |
16 |