Comparison

spec/scansion/prosody.cfg.lua @ 10434:8f709577fe8e

Merge 0.11->trunk
author Kim Alvefur <zash@zash.se>
date Sat, 23 Nov 2019 23:12:01 +0100
parent 10238:9cfefd57da05
child 10467:600d4cf41ce1
comparison
equal deleted inserted replaced
10433:7777f25d5266 10434:8f709577fe8e
6 6
7 modules_enabled = { 7 modules_enabled = {
8 -- Generally required 8 -- Generally required
9 "roster"; -- Allow users to have a roster. Recommended ;) 9 "roster"; -- Allow users to have a roster. Recommended ;)
10 "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in. 10 "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
11 "tls"; -- Add support for secure TLS on c2s/s2s connections 11 --"tls"; -- Add support for secure TLS on c2s/s2s connections
12 "dialback"; -- s2s dialback support 12 "dialback"; -- s2s dialback support
13 "disco"; -- Service discovery 13 "disco"; -- Service discovery
14 14
15 -- Not essential, but recommended 15 -- Not essential, but recommended
16 "carbons"; -- Keep multiple clients in sync 16 "carbons"; -- Keep multiple clients in sync
17 "pep"; -- Enables users to publish their mood, activity, playing music and more 17 "pep"; -- Enables users to publish their avatar, mood, activity, playing music and more
18 "private"; -- Private XML storage (for room bookmarks, etc.) 18 "private"; -- Private XML storage (for room bookmarks, etc.)
19 "blocklist"; -- Allow users to block communications with other users 19 "blocklist"; -- Allow users to block communications with other users
20 "vcard"; -- Allow users to set vCards 20 "vcard4"; -- User profiles (stored in PEP)
21 "vcard_legacy"; -- Conversion between legacy vCard and PEP Avatar, vcard
21 22
22 -- Nice to have 23 -- Nice to have
23 "version"; -- Replies to server version requests 24 "version"; -- Replies to server version requests
24 "uptime"; -- Report how long server has been running 25 "uptime"; -- Report how long server has been running
25 "time"; -- Let others know the time here on this server 26 "time"; -- Let others know the time here on this server
26 "ping"; -- Replies to XMPP pings with pongs 27 "ping"; -- Replies to XMPP pings with pongs
27 "register"; -- Allow users to register on this server using a client and change passwords 28 "register"; -- Allow users to register on this server using a client and change passwords
28 "mam"; -- Store messages in an archive and allow users to access it 29 "mam"; -- Store messages in an archive and allow users to access it
30 --"csi_simple"; -- Simple Mobile optimizations
31
32 -- Admin interfaces
33 --"admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands
34 --"admin_telnet"; -- Opens telnet console interface on localhost port 5582
29 35
30 -- HTTP modules 36 -- HTTP modules
31 --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP" 37 --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
32 --"websocket"; -- XMPP over WebSockets 38 --"websocket"; -- XMPP over WebSockets
33 --"http_files"; -- Serve static files from a directory over HTTP 39 --"http_files"; -- Serve static files from a directory over HTTP