Mercurial > prosody-modules
view mod_require_otr/mod_require_otr.lua @ 3943:f5e6368a1c39
mod_cloud_notify: Cleanup code and drop support for prosody 0.9
This removes some legacy stuff that was needed for prosody 0.9
We now use util.stanza:find instead of our own patched version to be more mainstream
The unneeded module unloading code was removed, too
author | tmolitor <thilo@eightysoft.de> |
---|---|
date | Wed, 11 Mar 2020 20:00:50 +0100 |
parents | dfe1818962f5 |
children |
line wrap: on
line source
local st = require "util.stanza"; local block_groupchat = module:get_option_boolean("otr_block_groupchat", false); function reject_plaintext_messages(event) local body = event.stanza:get_child_text("body"); if body and body:sub(1,4) ~= "?OTR" or (not block_groupchat and event.stanza.attr.type == "groupchat") then return event.origin.send(st.error_reply(event.stanza, "modify", "policy-violation", "OTR encryption is required for conversations on this server")); end end module:hook("pre-message/bare", reject_plaintext_messages, 300); module:hook("pre-message/full", reject_plaintext_messages, 300); module:hook("pre-message/host", reject_plaintext_messages, 300);