diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-06-02 19:56:12 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-06-02 19:56:12 +0100 |
commit | 6bf427e2ebbca67cc47fdbb2648599e96626d546 (patch) | |
tree | 30b831aa932c259e77f39aa0a2a865c61160f3f0 | |
parent | d6d2af95bdf8423fe007f17079be8cc3c6c7f02d (diff) | |
download | prosody-6bf427e2ebbca67cc47fdbb2648599e96626d546.tar.gz prosody-6bf427e2ebbca67cc47fdbb2648599e96626d546.zip |
prosody.cfg.lua.dist: Enable mod_register by default, but with registration disabled, and add a comment about it
-rw-r--r-- | prosody.cfg.lua.dist | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 182f8889..c0627091 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -54,15 +54,19 @@ Host "*" "uptime"; -- Report how long server has been running
"time"; -- Let others know the time here on this server
"ping"; -- Replies to XMPP pings with pongs
+ "register"; -- Allow users to register on this server using a client and change passwords
-- Other specific functionality
- --"register"; -- Allow users to register on this server using a client
--"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
--"console"; -- telnet to port 5582 (needs console_enabled = true)
--"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
--"httpserver"; -- Serve static files from a directory over HTTP
};
+ -- Disable account creation by default, for security
+ -- For more information see http://prosody.im/doc/creating_accounts
+ allow_registration = false;
+
-- These are the SSL/TLS-related settings. If you don't want
-- to use SSL/TLS, you may comment or remove this
ssl = {
|