Mercurial > prosody-modules
view mod_s2s_smacks_timeout/mod_s2s_smacks_timeout.lua @ 6013:f301d777ee49
mod_vcard_muc: Use footnote syntax of Pandocs markdown
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Wed, 06 Nov 2024 00:43:31 +0100 |
| parents | f0fe95f9e21c |
| children |
line wrap: on
line source
module:depends("smacks"); module:hook("smacks-ack-delayed", function (event) if event.origin.type == "s2sin" or event.origin.type == "s2sout" then event.origin:close("connection-timeout"); return true; end end);
