# HG changeset patch # User Matthew Wild # Date 1268874925 0 # Node ID c1e6df7cf56a285560e044a88ab499ba7580428f # Parent 3baee526d7149b12a1633621878e1d4b481d2a41 s2smanager: Remove the infamous 'as per RFC' log message entirely (it happens too often to be useful) diff -r 3baee526d714 -r c1e6df7cf56a core/s2smanager.lua --- a/core/s2smanager.lua Tue Mar 09 20:14:47 2010 +0500 +++ b/core/s2smanager.lua Thu Mar 18 01:15:25 2010 +0000 @@ -359,12 +359,6 @@ session.secure = true; end - if session.version >= 1.0 and not (attr.to and attr.from) then - - (session.log or log)("warn", "Remote of stream "..(session.from_host or "(unknown)").."->"..(session.to_host or "(unknown)") - .." failed to specify to (%s) and/or from (%s) hostname as per RFC", tostring(attr.to), tostring(attr.from)); - end - if session.direction == "incoming" then -- Send a reply stream header session.to_host = attr.to and nameprep(attr.to);