Software /
code /
prosody
Diff
plugins/mod_auth_insecure.lua @ 9292:d5f798efb1ba
mod_auth_insecure: Fix module provider name
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 12 Sep 2018 13:43:18 +0100 |
parent | 9275:db137a87511b |
child | 10914:0d7d71dee0a0 |
line wrap: on
line diff
--- a/plugins/mod_auth_insecure.lua Tue Sep 11 20:57:23 2018 +0100 +++ b/plugins/mod_auth_insecure.lua Wed Sep 12 13:43:18 2018 +0100 @@ -11,7 +11,7 @@ local new_sasl = require "util.sasl".new; local host = module.host; -local provider = { name = "any" }; +local provider = { name = "insecure" }; assert(module:get_option_string("insecure_open_authentication") == "Yes please, I know what I'm doing!");