diff options
author | Matthew Wild <mwild1@gmail.com> | 2022-03-02 15:20:21 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2022-03-02 15:20:21 +0000 |
commit | ebf9f9d157c048291687984912014d398482f1c5 (patch) | |
tree | 632fbc47c66beb798f61ff256bfec5371e7e6b28 /prosody.cfg.lua.dist | |
parent | 855f8db6adc3e86cd54991f194356d5e9bb9f391 (diff) | |
download | prosody-ebf9f9d157c048291687984912014d398482f1c5.tar.gz prosody-ebf9f9d157c048291687984912014d398482f1c5.zip |
prosody.cfg.lua.dist: Improved descriptions for a number of modules
Diffstat (limited to 'prosody.cfg.lua.dist')
-rw-r--r-- | prosody.cfg.lua.dist | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index e617c3a0..c56062dd 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -40,21 +40,21 @@ modules_enabled = { -- Not essential, but recommended "blocklist"; -- Allow users to block communications with other users - "bookmarks"; -- Synchronise open rooms between clients - "carbons"; -- Keep multiple clients in sync - "dialback"; -- s2s dialback support + "bookmarks"; -- Synchronise the list of open rooms between clients + "carbons"; -- Keep multiple online clients in sync + "dialback"; -- Support for verifying remote servers using DNS "limits"; -- Enable bandwidth limiting for XMPP connections - "pep"; -- Enables users to publish their avatar, mood, activity, playing music and more - "private"; -- Private XML storage (for room bookmarks, etc.) + "pep"; -- Allow users to store public and private data in their account + "private"; -- Legacy account storage mechanism (XEP-0049) "smacks"; -- Stream management and resumption (XEP-0198) "vcard4"; -- User profiles (stored in PEP) "vcard_legacy"; -- Conversion between legacy vCard and PEP Avatar, vcard -- Nice to have - "csi_simple"; -- Simple Mobile optimizations + "csi_simple"; -- Simple but effective traffic optimizations for mobile devices "invites"; -- Create and manage invites - "invites_register"; -- Create accounts using invites - "invites_adhoc"; -- Create invites via AdHoc command + "invites_adhoc"; -- Allow admins/users to create invitations via their client + "invites_register"; -- Allows invited users to create accounts "ping"; -- Replies to XMPP pings with pongs "register"; -- Allow users to register on this server using a client and change passwords "time"; -- Let others know the time here on this server |