diff options
author | Kim Alvefur <zash@zash.se> | 2022-02-10 17:15:18 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-02-10 17:15:18 +0100 |
commit | deccf683d20f69e3f5dbfef349e34767191bb466 (patch) | |
tree | 06f6c5866d9e7bc75eb1f726c063e782a4b717db | |
parent | 99e90a99142facdeffd4af56ae1c7b8360609c9e (diff) | |
download | prosody-deccf683d20f69e3f5dbfef349e34767191bb466.tar.gz prosody-deccf683d20f69e3f5dbfef349e34767191bb466.zip |
prosody.cfg.lua.dist: Move Dialback down
Mostly a source of security issues lately
-rw-r--r-- | prosody.cfg.lua.dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index d3796f63..f2a80e52 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -41,7 +41,6 @@ modules_enabled = { "roster"; -- Allow users to have a roster. Recommended ;) "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in. "tls"; -- Add support for secure TLS on c2s/s2s connections - "dialback"; -- s2s dialback support "disco"; -- Service discovery -- Not essential, but recommended @@ -54,6 +53,7 @@ modules_enabled = { "limits"; -- Enable bandwidth limiting for XMPP connections "bookmarks"; -- Synchronise open rooms between clients "smacks"; -- Stream management and resumption (XEP-0198) + "dialback"; -- s2s dialback support -- Nice to have "version"; -- Replies to server version requests |