[ADD/WIP] Start receiptwerk

This commit is contained in:
LDA 2024-07-06 00:38:10 +02:00
commit 0fc0fdd6f4
9 changed files with 144 additions and 8 deletions

View file

@ -82,6 +82,12 @@ XMPPSendPlainID(XMPPComponent *comp, char *fr, char *to, char *msg, char *type,
XMLAddChild(message, xedit);
}
{
XMLElement *request = XMLCreateTag("request");
XMLAddAttr(request, "xmlns", "urn:xmpp:receipts");
XMLAddChild(message, request);
}
if (oob)
{
XMLElement *xoob, *oob_data, *oob_url;