File

mod_s2s_smacks_timeout/mod_s2s_smacks_timeout.lua @ 6213:811bd0872682

mod_push2: Do not push MUC reflections Messages from myself to a MUC come back and should not get pushed. MUC subjects don't have a body so seperately checking for those is not needed.
author Stephen Paul Weber <singpolyma@singpolyma.net>
date Mon, 24 Mar 2025 08:53:36 -0500
parent 4981:f0fe95f9e21c
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);