aboutsummaryrefslogtreecommitdiffstats
path: root/prosody.cfg.lua.dist
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-03-22 15:23:26 +0000
committerMatthew Wild <mwild1@gmail.com>2009-03-22 15:23:26 +0000
commit393cbf45ae2bd3316f9beece418d4c43f3995caf (patch)
tree129ab13828ec7c80a43c9dd6b110d318d086da96 /prosody.cfg.lua.dist
parent590a41c6f44cba0b7f38bde8c34cedd4ddc11439 (diff)
downloadprosody-393cbf45ae2bd3316f9beece418d4c43f3995caf.tar.gz
prosody-393cbf45ae2bd3316f9beece418d4c43f3995caf.zip
Update example config, categorise modules, add new modules
Diffstat (limited to 'prosody.cfg.lua.dist')
-rw-r--r--prosody.cfg.lua.dist33
1 files changed, 23 insertions, 10 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist
index 1c61e6b3..dc636192 100644
--- a/prosody.cfg.lua.dist
+++ b/prosody.cfg.lua.dist
@@ -36,20 +36,30 @@ Host "*"
-- 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.
modules_enabled = {
- "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
- "legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
+ -- Generally required
"roster"; -- Allow users to have a roster. Recommended ;)
- "register"; -- Allow users to register on this server using a client
+ "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
"tls"; -- Add support for secure TLS on c2s/s2s connections
- "vcard"; -- Allow users to set vCards
- "private"; -- Private XML storage (for room bookmarks, etc.)
- "version"; -- Replies to server version requests
"dialback"; -- s2s dialback support
"disco"; -- Service discovery
- "ping"; -- XMPP Ping
- "time"; -- Let others know the time here
- "uptime"; -- Uptime reporting
- "console"; -- telnet to port 5582 (needs console_enabled = true)
+
+ -- Not essential, but recommended
+ "private"; -- Private XML storage (for room bookmarks, etc.)
+ "vcard"; -- Allow users to set vCards
+
+ -- Nice to have
+ "legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
+ "version"; -- Replies to server version requests
+ "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
+
+ -- 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
};
-- These are the SSL/TLS-related settings. If you don't want
@@ -75,3 +85,6 @@ Host "example.com"
}
enabled = false -- This will disable the host, preserving the config, but denying connections
+
+-- Set up a MUC (multi-user chat) room server on conference.example.com:
+Component "conference.example.com" "muc"