Mercurial > prosody-modules
view mod_tlsfail/mod_tlsfail.lua @ 4881:09b8144051ea
mod_invites_page: Fix templates including stray inviter name (thanks Menel)
The util.interpolation syntax `{var?placeholder}` appears to have been
intended as an if-not, but this syntax will always return either the
variable or the placeholder-template.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 02 Feb 2022 11:22:50 +0100 |
parents | 7009e16192fa |
children |
line wrap: on
line source
local st = require "util.stanza"; local xmlns_starttls = 'urn:ietf:params:xml:ns:xmpp-tls'; local starttls_attr = { xmlns = xmlns_starttls }; local s2s_feature = st.stanza("starttls", starttls_attr); local starttls_failure = st.stanza("failure", starttls_attr); module:hook("stream-features", function(event) local features = event.features; features:add_child(s2s_feature); end); module:hook("s2s-stream-features", function(event) local features = event.features; features:add_child(s2s_feature); end); -- Hook <starttls/> module:hook("stanza/urn:ietf:params:xml:ns:xmpp-tls:starttls", function(event) local origin = event.origin; (origin.sends2s or origin.send)(starttls_failure); origin:close(); return true; end);