mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_csi_simple: Allow configuring extra tags indicating importance
This commit is contained in:
parent
44ed7a0e21
commit
4b33a7aac8
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
-- Copyright (C) 2016-2018 Kim Alvefur
|
||||
-- Copyright (C) 2016-2020 Kim Alvefur
|
||||
--
|
||||
-- This project is MIT/X11 licensed. Please see the
|
||||
-- COPYING file in the source package for more information.
|
||||
|
@ -13,6 +13,8 @@ local filters = require "util.filters";
|
|||
|
||||
local queue_size = module:get_option_number("csi_queue_size", 256);
|
||||
|
||||
local important_payloads = module:get_option_set("csi_important_payloads", { });
|
||||
|
||||
module:hook("csi-is-stanza-important", function (event)
|
||||
local stanza = event.stanza;
|
||||
if not st.is_stanza(stanza) then
|
||||
|
@ -46,6 +48,11 @@ module:hook("csi-is-stanza-important", function (event)
|
|||
if stanza:get_child("encryption", "urn:xmpp:eme:0") then
|
||||
return true;
|
||||
end
|
||||
for important in important_payloads do
|
||||
if stanza:find(important) then
|
||||
return true;
|
||||
end
|
||||
end
|
||||
return false;
|
||||
end
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue