net.dns: (for some reason this commit didn't pull over from 0.5) Remove hard-coded...
[prosody.git] / core / stanza_router.lua
index 5bf437f9d8f643d7b98c9c3ba1335ba3cdf6f393..dac098bbccae4af59c7d044d79f027e4303f706a 100644 (file)
@@ -1,4 +1,4 @@
--- Prosody IM v0.4
+-- Prosody IM
 -- Copyright (C) 2008-2009 Matthew Wild
 -- Copyright (C) 2008-2009 Waqas Hussain
 -- 
@@ -150,11 +150,7 @@ function core_post_stanza(origin, stanza)
                        component_handle_stanza(origin, stanza);
                        return;
                end
-               if not modules_handle_stanza(h.host, origin, stanza) then
-                       if stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then
-                               origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
-                       end
-               end
+               modules_handle_stanza(h.host, origin, stanza);
        else
                core_route_stanza(origin, stanza);
        end
@@ -173,7 +169,10 @@ function core_route_stanza(origin, stanza)
                core_post_stanza(origin, stanza);
        elseif origin.type == "c2s" then
                -- Remote host
-               if not hosts[from_host].disallow_s2s then
+               if not hosts[from_host] then
+                       log("error", "No hosts[from_host] (please report): %s", tostring(stanza));
+               end
+               if (not hosts[from_host]) or (not hosts[from_host].disallow_s2s) then
                        local xmlns = stanza.attr.xmlns;
                        --stanza.attr.xmlns = "jabber:server";
                        stanza.attr.xmlns = nil;