util.sasl_cyrus: Protect the call to cyrussasl.server_new properly.
[prosody.git] / core / s2smanager.lua
index b65fe00c1d1f1a876b460d4454c01e6021410878..f0b802d87e50c164b0e84e9fd7a24a5d6e302178 100644 (file)
@@ -369,11 +369,6 @@ function streamopened(session, attr)
                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);