# HG changeset patch # User Matthew Wild # Date 1254837736 -3600 # Node ID 92b78dd346cadbb6618bb87a8b19150ea6abc0bb # Parent b8e6764ffefdc75134596ae0773d12735994451a s2smanager: Don't send version=1.0 in reply to incoming stream tag if they didn't advertise 1.0 (makes happy some old ejabberd versions) diff -r b8e6764ffefd -r 92b78dd346ca core/s2smanager.lua --- a/core/s2smanager.lua Tue Oct 06 11:15:55 2009 +0100 +++ b/core/s2smanager.lua Tue Oct 06 15:02:16 2009 +0100 @@ -358,7 +358,7 @@ (session.log or log)("debug", "incoming s2s received "); send(""); send(stanza("stream:stream", { xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback', - ["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.to_host, version="1.0" }):top_tag()); + ["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.to_host, version=(session.version > 0 and "1.0" or nil) }):top_tag()); if session.to_host and not hosts[session.to_host] then -- Attempting to connect to a host we don't serve session:close({ condition = "host-unknown"; text = "This host does not serve "..session.to_host });