From 8bc951e8e2145ef85418ab0c745a4cbe45be10bb Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 29 Oct 2018 21:50:40 +0100 Subject: prosody.cfg.lua.dist: Add mod_csi_simple --- prosody.cfg.lua.dist | 1 + 1 file changed, 1 insertion(+) (limited to 'prosody.cfg.lua.dist') diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index a0fc6c9e..f3affc97 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -58,6 +58,7 @@ modules_enabled = { "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 + --"csi_simple"; -- Simple Mobile optimizations -- Admin interfaces "admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands -- cgit v1.2.3 From 0a684bdf335335012a268a696efe4fd8c3c40f46 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 29 Oct 2018 21:33:01 +0100 Subject: prosody.cfg.lua.dist: Mention that mod_pep handles avatars --- prosody.cfg.lua.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prosody.cfg.lua.dist') diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index f3affc97..7c620d10 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -46,7 +46,7 @@ modules_enabled = { -- Not essential, but recommended "carbons"; -- Keep multiple clients in sync - "pep"; -- Enables users to publish their mood, activity, playing music and more + "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 -- cgit v1.2.3 From e9458e4c875b892b6b1e8221d1339a57ed5f8b65 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 29 Oct 2018 16:07:42 +0100 Subject: prosody.cfg.lua.dist: Add mod_muc_mam to example MUC section --- prosody.cfg.lua.dist | 2 ++ 1 file changed, 2 insertions(+) (limited to 'prosody.cfg.lua.dist') diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 7c620d10..c888ac8b 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -198,6 +198,8 @@ VirtualHost "localhost" ---Set up a MUC (multi-user chat) room server on conference.example.com: --Component "conference.example.com" "muc" +--- Store MUC messages in an archive and allow users to access it +--modules_enabled = { "muc_mam" } ---Set up an external component (default component port is 5347) -- -- cgit v1.2.3 From f8eb580c6b958251d779ef60cd0548fd76fc131c Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 29 Oct 2018 22:04:58 +0100 Subject: prosody.cfg.lua.dist: Replace old vcard module with new ones --- prosody.cfg.lua.dist | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'prosody.cfg.lua.dist') diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index c888ac8b..b6ea2ecb 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -49,7 +49,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 -- cgit v1.2.3