Software /
code /
prosody
Comparison
prosody.cfg.lua.dist @ 13696:758818e21e01
Merge 13.0->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 14 Feb 2025 14:54:49 +0000 |
parent | 13694:293533fa5667 |
comparison
equal
deleted
inserted
replaced
13691:8c0db1524dd9 | 13696:758818e21e01 |
---|---|
6 -- Tip: You can check that the syntax of this file is correct | 6 -- Tip: You can check that the syntax of this file is correct |
7 -- when you have finished by running this command: | 7 -- when you have finished by running this command: |
8 -- prosodyctl check config | 8 -- prosodyctl check config |
9 -- If there are any errors, it will let you know what and where | 9 -- If there are any errors, it will let you know what and where |
10 -- they are, otherwise it will keep quiet. | 10 -- they are, otherwise it will keep quiet. |
11 -- | |
12 -- Upgrading from a previous release? Check https://prosody.im/doc/upgrading | |
11 -- | 13 -- |
12 -- The only thing left to do is rename this file to remove the .dist ending, and fill in the | 14 -- The only thing left to do is rename this file to remove the .dist ending, and fill in the |
13 -- blanks. Good luck, and happy Jabbering! | 15 -- blanks. Good luck, and happy Jabbering! |
14 | 16 |
15 | 17 |
49 "smacks"; -- Stream management and resumption (XEP-0198) | 51 "smacks"; -- Stream management and resumption (XEP-0198) |
50 "vcard4"; -- User profiles (stored in PEP) | 52 "vcard4"; -- User profiles (stored in PEP) |
51 "vcard_legacy"; -- Conversion between legacy vCard and PEP Avatar, vcard | 53 "vcard_legacy"; -- Conversion between legacy vCard and PEP Avatar, vcard |
52 | 54 |
53 -- Nice to have | 55 -- Nice to have |
56 "account_activity"; -- Record time when an account was last used | |
57 "cloud_notify"; -- Push notifications for mobile devices | |
54 "csi_simple"; -- Simple but effective traffic optimizations for mobile devices | 58 "csi_simple"; -- Simple but effective traffic optimizations for mobile devices |
55 "invites"; -- Create and manage invites | 59 "invites"; -- Create and manage invites |
56 "invites_adhoc"; -- Allow admins/users to create invitations via their client | 60 "invites_adhoc"; -- Allow admins/users to create invitations via their client |
57 "invites_register"; -- Allows invited users to create accounts | 61 "invites_register"; -- Allows invited users to create accounts |
58 "ping"; -- Replies to XMPP pings with pongs | 62 "ping"; -- Replies to XMPP pings with pongs |
73 --"websocket"; -- XMPP over WebSockets | 77 --"websocket"; -- XMPP over WebSockets |
74 | 78 |
75 -- Other specific functionality | 79 -- Other specific functionality |
76 --"announce"; -- Send announcement to all online users | 80 --"announce"; -- Send announcement to all online users |
77 --"groups"; -- Shared roster support | 81 --"groups"; -- Shared roster support |
78 --"legacyauth"; -- Legacy authentication. Only used by some old clients and bots. | |
79 --"mimicking"; -- Prevent address spoofing | 82 --"mimicking"; -- Prevent address spoofing |
80 --"motd"; -- Send a message to users when they log in | 83 --"motd"; -- Send a message to users when they log in |
81 --"proxy65"; -- Enables a file transfer proxy service which clients behind NAT can use | 84 --"proxy65"; -- Enables a file transfer proxy service which clients behind NAT can use |
82 --"s2s_bidi"; -- Bi-directional server-to-server (XEP-0288) | 85 --"s2s_bidi"; -- Bi-directional server-to-server (XEP-0288) |
83 --"server_contact_info"; -- Publish contact information for this service | 86 --"server_contact_info"; -- Publish contact information for this service |
90 -- to disable them then uncomment them here: | 93 -- to disable them then uncomment them here: |
91 modules_disabled = { | 94 modules_disabled = { |
92 -- "offline"; -- Store offline messages | 95 -- "offline"; -- Store offline messages |
93 -- "c2s"; -- Handle client connections | 96 -- "c2s"; -- Handle client connections |
94 -- "s2s"; -- Handle server-to-server connections | 97 -- "s2s"; -- Handle server-to-server connections |
95 -- "posix"; -- POSIX functionality, sends server to background, etc. | |
96 } | 98 } |
97 | 99 |
98 | 100 |
99 -- Server-to-server authentication | 101 -- Server-to-server authentication |
100 -- Require valid certificates for server-to-server connections? | 102 -- Require valid certificates for server-to-server connections? |