diff options
author | Kim Alvefur <zash@zash.se> | 2020-04-18 19:36:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-04-18 19:36:26 +0200 |
commit | 8f77033238b4cf72377ae0b45d5951c32324892d (patch) | |
tree | 280a43e1682912f755e039e8186014ddfeb9ac8b | |
parent | 8be4a3edd7de37c5c06beb3479ec6c84b510f95a (diff) | |
download | prosody-8f77033238b4cf72377ae0b45d5951c32324892d.tar.gz prosody-8f77033238b4cf72377ae0b45d5951c32324892d.zip |
mod_csi_simple: Consider MUC invites important
Both mediated invites defined by XEP-0045: Multi-User Chat and direct
invites defined by XEP-0249: Direct MUC Invitations
-rw-r--r-- | doc/doap.xml | 8 | ||||
-rw-r--r-- | plugins/mod_csi_simple.lua | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/doap.xml b/doc/doap.xml index c23334ae..540cbe51 100644 --- a/doc/doap.xml +++ b/doc/doap.xml @@ -431,6 +431,14 @@ </implements> <implements> <xmpp:SupportedXep> + <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0249.html"/> + <xmpp:version>1.2</xmpp:version> + <xmpp:since>0.12</xmpp:since> + <xmpp:note>mod_csi_simple</xmpp:note> + </xmpp:SupportedXep> + </implements> + <implements> + <xmpp:SupportedXep> <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0280.html"/> <xmpp:version>0.12.1</xmpp:version> <xmpp:status>complete</xmpp:status> diff --git a/plugins/mod_csi_simple.lua b/plugins/mod_csi_simple.lua index e439bf38..cc15f033 100644 --- a/plugins/mod_csi_simple.lua +++ b/plugins/mod_csi_simple.lua @@ -48,6 +48,9 @@ module:hook("csi-is-stanza-important", function (event) if stanza:get_child("encryption", "urn:xmpp:eme:0") then return true; end + if stanza:get_child("x", "jabber:x:conference") or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then + return true; + end for important in important_payloads do if stanza:find(important) then return true; |