Update example config, categorise modules, add new modules
authorMatthew Wild <mwild1@gmail.com>
Sun, 22 Mar 2009 15:23:26 +0000 (15:23 +0000)
committerMatthew Wild <mwild1@gmail.com>
Sun, 22 Mar 2009 15:23:26 +0000 (15:23 +0000)
prosody.cfg.lua.dist

index 1c61e6b3d51438676fc6985e52bf7cd1164fda07..dc636192a9daa85ac64957d525bdcb900cf3cc46 100644 (file)
@@ -36,20 +36,30 @@ Host "*"
        -- This is the list of modules Prosody will load on startup.\r
        -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.\r
        modules_enabled = {\r
-                               "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.\r
-                               "legacyauth"; -- Legacy authentication. Only used by some old clients and bots.\r
+                       -- Generally required\r
                                "roster"; -- Allow users to have a roster. Recommended ;)\r
-                               "register"; -- Allow users to register on this server using a client\r
+                               "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.\r
                                "tls"; -- Add support for secure TLS on c2s/s2s connections\r
-                               "vcard"; -- Allow users to set vCards\r
-                               "private"; -- Private XML storage (for room bookmarks, etc.)\r
-                               "version"; -- Replies to server version requests\r
                                "dialback"; -- s2s dialback support\r
                                "disco"; -- Service discovery\r
-                               "ping"; -- XMPP Ping\r
-                               "time"; -- Let others know the time here\r
-                               "uptime"; -- Uptime reporting\r
-                               "console"; -- telnet to port 5582 (needs console_enabled = true)\r
+                       \r
+                       -- Not essential, but recommended\r
+                               "private"; -- Private XML storage (for room bookmarks, etc.)\r
+                               "vcard"; -- Allow users to set vCards\r
+                       \r
+                       -- Nice to have\r
+                               "legacyauth"; -- Legacy authentication. Only used by some old clients and bots.\r
+                               "version"; -- Replies to server version requests\r
+                               "uptime"; -- Report how long server has been running\r
+                               "time"; -- Let others know the time here on this server\r
+                               "ping"; -- Replies to XMPP pings with pongs\r
+\r
+                       -- Other specific functionality\r
+                               --"register"; -- Allow users to register on this server using a client\r
+                               --"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.\r
+                               --"console"; -- telnet to port 5582 (needs console_enabled = true)\r
+                               --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"\r
+                               --"httpserver"; -- Serve static files from a directory over HTTP\r
                          };\r
        \r
        -- These are the SSL/TLS-related settings. If you don't want\r
@@ -75,3 +85,6 @@ Host "example.com"
                }\r
 \r
        enabled = false -- This will disable the host, preserving the config, but denying connections\r
+\r
+-- Set up a MUC (multi-user chat) room server on conference.example.com:\r
+Component "conference.example.com" "muc"\r