diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-06-04 00:29:55 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-06-04 00:29:55 +0100 |
commit | 0ed8dc1f6e806747f35cc993280804163129655e (patch) | |
tree | e28702e6134dc0f8546439944e0b4b4aedc32eb2 /plugins/mod_component.lua | |
parent | a6049ace587d5d159689f8934fa87d1b2c5193da (diff) | |
download | prosody-0ed8dc1f6e806747f35cc993280804163129655e.tar.gz prosody-0ed8dc1f6e806747f35cc993280804163129655e.zip |
mod_component: Small code clarity fix
Diffstat (limited to 'plugins/mod_component.lua')
-rw-r--r-- | plugins/mod_component.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_component.lua b/plugins/mod_component.lua index fda271dd..a70a7223 100644 --- a/plugins/mod_component.lua +++ b/plugins/mod_component.lua @@ -86,7 +86,7 @@ function handle_component_auth(event) send = session.send; main_session = session; session.on_destroy = on_destroy; - session.component_validate_from = module:get_option_boolean("validate_from_addresses") ~= false; + session.component_validate_from = module:get_option_boolean("validate_from_addresses", true); log("info", "Component successfully authenticated: %s", session.host); session.send(st.stanza("handshake")); else -- TODO: Implement stanza distribution |