From da93c0fdababbe8dc784b17d02209b85d6c77a2b Mon Sep 17 00:00:00 2001 From: Christof Schulze <christof.schulze@gmx.net> Date: Mon, 24 Mar 2025 00:10:13 +0100 Subject: [PATCH] prosody: plugin_paths cleared we do not need community moules, therefore no path needs to be specified --- templates/prosody/prosody.cfg.lua.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/prosody/prosody.cfg.lua.j2 b/templates/prosody/prosody.cfg.lua.j2 index 2686bfe..5b7fd8e 100644 --- a/templates/prosody/prosody.cfg.lua.j2 +++ b/templates/prosody/prosody.cfg.lua.j2 @@ -25,7 +25,7 @@ admins = { "alex@{{ prosody_domain_name }}", "tux@{{ prosody_domain_name }}" } -- Prosody will always look in its source directory for modules, but -- this option allows you to specify additional locations where Prosody -- will look for modules first. For community modules, see https://modules.prosody.im/ -plugin_paths = { "/usr/local/lib/prosody-modules" } +plugin_paths = { } -- This is the list of modules Prosody will load on startup. -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.