diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-05-24 13:59:59 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-05-24 13:59:59 +0100 |
commit | d1920dc560eb1e71b59c9500fb0ad8dec81a3a3f (patch) | |
tree | 092fa7f116c8e3ac3c0fd3d7a1f58d0f1941f4f2 /prosody.cfg.lua.dist | |
parent | 7b3aac0e5d17681af0956ac2c42e5ccaca612fd8 (diff) | |
download | prosody-d1920dc560eb1e71b59c9500fb0ad8dec81a3a3f.tar.gz prosody-d1920dc560eb1e71b59c9500fb0ad8dec81a3a3f.zip |
prosody.cfg.lua: Remove some more sneaky ';' characters from the config
Diffstat (limited to 'prosody.cfg.lua.dist')
-rw-r--r-- | prosody.cfg.lua.dist | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index a662adcd..30221da9 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -24,7 +24,7 @@ admins = { } -- Enable use of libevent for better performance under high load -- For more information see: http://prosody.im/doc/libevent ---use_libevent = true; +--use_libevent = true -- This is the list of modules Prosody will load on startup. -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too. @@ -70,7 +70,7 @@ modules_enabled = { --"watchregistrations"; -- Alert admins of registrations --"motd"; -- Send a message to users when they log in --"legacyauth"; -- Legacy authentication. Only used by some old clients and bots. -}; +} -- These modules are auto-loaded, but should you want -- to disable them then uncomment them here: @@ -82,7 +82,7 @@ modules_disabled = { -- Disable account creation by default, for security -- For more information see http://prosody.im/doc/creating_accounts -allow_registration = false; +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 |