From 37855153b88a74395eebce84f672eaaf3a67d254 Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Mon, 17 Jan 2022 18:12:53 +0100 Subject: [PATCH] fixed plugin path --- webmails/roundcube/start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webmails/roundcube/start.py b/webmails/roundcube/start.py index 217a24e9..2c66bf19 100755 --- a/webmails/roundcube/start.py +++ b/webmails/roundcube/start.py @@ -51,7 +51,7 @@ context['SECRET_KEY'] = hmac.new(bytearray(secret_key, 'utf-8'), bytearray('ROUN # roundcube plugins # (using "dict" because it is ordered and "set" is not) -plugins = dict((p, None) for p in env.get("ROUNDCUBE_PLUGINS", "").replace(" ", "").split(",") if p and os.path.isdir(os.path.join("/var/www/plugins", p))) +plugins = dict((p, None) for p in env.get("ROUNDCUBE_PLUGINS", "").replace(" ", "").split(",") if p and os.path.isdir(os.path.join("/var/www/html/plugins", p))) if plugins: plugins["mailu"] = None else: