# HG changeset patch # User Matthew Wild # Date 1237735406 0 # Node ID 62dd71870ee39f3fb720f70a244be8aff7c35e98 # Parent 39133bca5938901a23c05d1b305f1dd5da0aa050 Update example config, categorise modules, add new modules diff -r 39133bca5938 -r 62dd71870ee3 prosody.cfg.lua.dist --- a/prosody.cfg.lua.dist Sun Mar 22 15:08:15 2009 +0000 +++ b/prosody.cfg.lua.dist Sun Mar 22 15:23:26 2009 +0000 @@ -36,20 +36,30 @@ -- 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 @@ } 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"