mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Allow unauthenticated components to authenticate (thanks Maranda)
This commit is contained in:
parent
b56a39255a
commit
a8a1bb526f
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ function module.add_host(module)
|
|||
local function handle_component_auth(event)
|
||||
local session, stanza = event.origin, event.stanza;
|
||||
|
||||
if session.type ~= "component" then return; end
|
||||
if session.type ~= "component_unauthed" then return; end
|
||||
|
||||
if (not session.host) or #stanza.tags > 0 then
|
||||
(session.log or log)("warn", "Invalid component handshake for host: %s", session.host);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue