diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-01-07 05:08:09 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-01-07 05:08:09 +0000 |
commit | 71d5a8a228d6f9633b6cdec8df92c8519653e937 (patch) | |
tree | f6a76cf921cf748c406dcb4c39214116518109b8 /prosody.cfg.lua.dist | |
parent | 74408ff9f5ed48bfd4125729e2bdada3f19356be (diff) | |
download | prosody-71d5a8a228d6f9633b6cdec8df92c8519653e937.tar.gz prosody-71d5a8a228d6f9633b6cdec8df92c8519653e937.zip |
prosody.cfg.lua: Add mod_offline to the list of modules that can be disabled, and add comments for all auto-loaded modules
Diffstat (limited to 'prosody.cfg.lua.dist')
-rw-r--r-- | prosody.cfg.lua.dist | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 41850537..c8d0bcda 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -73,9 +73,10 @@ modules_enabled = { -- (for some mad reason) want to disable -- them then uncomment them below modules_disabled = { - -- "presence"; - -- "message"; - -- "iq"; + -- "presence"; -- Route user/contact status information + -- "message"; -- Route messages + -- "iq"; -- Route info queries + -- "offline"; -- Store offline messages }; -- Disable account creation by default, for security |