# HG changeset patch # User Matthew Wild # Date 1536756198 -3600 # Node ID d5f798efb1ba31f08d87e259b3c08049106cd683 # Parent 329a670ae9750918564470682eae89e0d68f981c mod_auth_insecure: Fix module provider name diff -r 329a670ae975 -r d5f798efb1ba plugins/mod_auth_insecure.lua --- 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!");