mod_csi_simple: Consider messages encrypted payload as important (fixes part of ...
[prosody.git] / plugins / mod_register.lua
blob763e2fd92157add4c0426dc8588b812760c3e66f
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 --
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
10 local allow_registration = module:get_option_boolean("allow_registration", false);
12 if allow_registration then
13 module:depends("register_ibr");
14 end
16 module:depends("user_account_management");