diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-11 23:25:16 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-11 23:25:16 +0100 |
commit | 743c5bd552deeb935adcf94057cd015e10a70745 (patch) | |
tree | b724e5c84fb88eb7098695fbb4a5f7af26fa82ca | |
parent | 15113f0bb16515caf35d100d4aedf4894bdbda6b (diff) | |
download | prosody-743c5bd552deeb935adcf94057cd015e10a70745.tar.gz prosody-743c5bd552deeb935adcf94057cd015e10a70745.zip |
spec/scansion/prosody.cfg.lua: Replace mod_vcard with mod_vcard4 and mod_vcard_legacy as in default config
-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 170371e1..e8872bff 100644 --- a/spec/scansion/prosody.cfg.lua +++ b/spec/scansion/prosody.cfg.lua @@ -17,7 +17,8 @@ modules_enabled = { "pep"; -- Enables users to publish their avatar, mood, activity, playing music and more "private"; -- Private XML storage (for room bookmarks, etc.) "blocklist"; -- Allow users to block communications with other users - "vcard"; -- Allow users to set vCards + "vcard4"; -- User profiles (stored in PEP) + "vcard_legacy"; -- Conversion between legacy vCard and PEP Avatar, vcard -- Nice to have "version"; -- Replies to server version requests |