diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-23 15:22:49 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-23 15:22:49 +0100 |
commit | 09cee9f95866a2f928ee77f49bcdf08cc9e5f9e8 (patch) | |
tree | bfeb9d91bbcf76ca0ba45eedc2071647e4bac9e4 /spec/scansion/prosody.cfg.lua | |
parent | 90e7122beaa47db43bd2f42eba648c568bb30417 (diff) | |
download | prosody-09cee9f95866a2f928ee77f49bcdf08cc9e5f9e8.tar.gz prosody-09cee9f95866a2f928ee77f49bcdf08cc9e5f9e8.zip |
mod_mam: Add test for JID normalization in prefs (see #1275)
Diffstat (limited to 'spec/scansion/prosody.cfg.lua')
-rw-r--r-- | spec/scansion/prosody.cfg.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/scansion/prosody.cfg.lua b/spec/scansion/prosody.cfg.lua index 94861449..f95ea31b 100644 --- a/spec/scansion/prosody.cfg.lua +++ b/spec/scansion/prosody.cfg.lua @@ -25,7 +25,7 @@ modules_enabled = { "time"; -- Let others know the time here on this server "ping"; -- Replies to XMPP pings with pongs "register"; -- Allow users to register on this server using a client and change passwords - --"mam"; -- Store messages in an archive and allow users to access it + "mam"; -- Store messages in an archive and allow users to access it -- HTTP modules --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP" @@ -59,6 +59,7 @@ insecure_open_authentication = "Yes please, I know what I'm doing!" storage = "memory" +mam_smart_enable = true -- For the "sql" backend, you can uncomment *one* of the below to configure: --sql = { driver = "SQLite3", database = "prosody.sqlite" } -- Default. 'database' is the filename. |