Comparison

spec/scansion/prosody.cfg.lua @ 9729:4f6413ec08a8 0.11

mod_mam: Add test for JID normalization in prefs (see #1275)
author Kim Alvefur <zash@zash.se>
date Sun, 23 Dec 2018 15:22:49 +0100
parent 9622:269c6df1f0fb
child 9730:69ef22961b7d
comparison
equal deleted inserted replaced
9728:d41ce505cdf9 9729:4f6413ec08a8
23 "version"; -- Replies to server version requests 23 "version"; -- Replies to server version requests
24 "uptime"; -- Report how long server has been running 24 "uptime"; -- Report how long server has been running
25 "time"; -- Let others know the time here on this server 25 "time"; -- Let others know the time here on this server
26 "ping"; -- Replies to XMPP pings with pongs 26 "ping"; -- Replies to XMPP pings with pongs
27 "register"; -- Allow users to register on this server using a client and change passwords 27 "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 28 "mam"; -- Store messages in an archive and allow users to access it
29 29
30 -- HTTP modules 30 -- HTTP modules
31 --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP" 31 --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
32 --"websocket"; -- XMPP over WebSockets 32 --"websocket"; -- XMPP over WebSockets
33 --"http_files"; -- Serve static files from a directory over HTTP 33 --"http_files"; -- Serve static files from a directory over HTTP
57 authentication = "insecure" 57 authentication = "insecure"
58 insecure_open_authentication = "Yes please, I know what I'm doing!" 58 insecure_open_authentication = "Yes please, I know what I'm doing!"
59 59
60 storage = "memory" 60 storage = "memory"
61 61
62 mam_smart_enable = true
62 63
63 -- For the "sql" backend, you can uncomment *one* of the below to configure: 64 -- For the "sql" backend, you can uncomment *one* of the below to configure:
64 --sql = { driver = "SQLite3", database = "prosody.sqlite" } -- Default. 'database' is the filename. 65 --sql = { driver = "SQLite3", database = "prosody.sqlite" } -- Default. 'database' is the filename.
65 --sql = { driver = "MySQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" } 66 --sql = { driver = "MySQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
66 --sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" } 67 --sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }