view mod_s2soutinjection/mod_s2soutinjection.lua @ 6360:3e8bd71d39bb

mod_http_muc_log: Ignore fallback body next to XEP-0444: Message Reactions Some clients send a quote reply along with XEP-0444 in order to accommodate legacy clients. This however takes up some space and the reaction is shown twice. This is a matter of some debate with diverging opinions about whether this should be done at all and how to handle this.
author Kim Alvefur <zash@zash.se>
date Thu, 15 Jan 2026 16:03:01 +0100
parents 4cc3d3de74a7
children
line wrap: on
line source

--% requires: s2sout-pre-connect-event

local basic_resolver = require "net.resolvers.basic";

local injected = module:get_option("s2s_connect_overrides");

module:hook("s2sout-pre-connect", function (event)
	local session = event.session;
	local to_host = session.to_host;
	local inject = injected and injected[to_host];
	if not inject then return end

	local host, port = inject[1] or inject, tonumber(inject[2]) or 5269;
	event.resolver = basic_resolver.new(host, port, "tcp");
end);