mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_invites_register: Default to require encryption
In line with the Prosody-wide default change for 0.12.
This commit is contained in:
parent
a53ffcca73
commit
a02e872f86
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ local jid_bare = require "util.jid".bare;
|
|||
local rostermanager = require "core.rostermanager";
|
||||
|
||||
local require_encryption = module:get_option_boolean("c2s_require_encryption",
|
||||
module:get_option_boolean("require_encryption", false));
|
||||
module:get_option_boolean("require_encryption", true));
|
||||
local invite_only = module:get_option_boolean("registration_invite_only", true);
|
||||
|
||||
local invites;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue