mod_s2s_smacks_timeout/mod_s2s_smacks_timeout.lua
author Kim Alvefur <zash@zash.se>
Wed, 24 Aug 2022 11:37:00 +0200
changeset 5015 55cf7f063af6
parent 4985 f0fe95f9e21c
permissions -rw-r--r--
mod_muc_bot/README: Update to account for 0.12 going stable

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);