mod_s2s: Clone queued outgoing stanzas to prevent changes

This clone call was lost in 902d25cd0557

Affects e.g. presence broadcasts, where the same stanza is sent many
times while mutating the 'to' attribute.
This commit is contained in:
Kim Alvefur 2024-11-10 15:10:26 +01:00
parent b126efdd1c
commit e097713883

View file

@ -227,7 +227,7 @@ function route_to_new_session(event)
-- Store in buffer
host_session.bounce_sendq = bounce_sendq;
host_session.sendq = queue.new(sendq_size);
host_session.sendq:push(stanza);
host_session.sendq:push(st.clone(stanza));
log("debug", "stanza [%s] queued until connection complete", stanza.name);
-- FIXME Cleaner solution to passing extra data from resolvers to net.server
-- This mt-clone allows resolvers to add extra data, currently used for DANE TLSA records