From 93e7ebbe564f0236df959f3b4d69ed93581c306c Mon Sep 17 00:00:00 2001 From: Adrien DAURIAT <16813527+dauriata@users.noreply.github.com> Date: Sat, 11 Jul 2026 15:19:46 +0200 Subject: [PATCH] Fix greylist module setting path --- rootfs/usr/local/bin/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs/usr/local/bin/setup.sh b/rootfs/usr/local/bin/setup.sh index 4a8b682..1e55801 100644 --- a/rootfs/usr/local/bin/setup.sh +++ b/rootfs/usr/local/bin/setup.sh @@ -437,7 +437,7 @@ fi # Disable greylisting policy if [ "$DISABLE_GREYLISTING" = true ]; then echo "[INFO] Greylisting policy is disabled" - echo "enabled = false;" > /etc/rspamd/local.d/greylisting.conf + echo "enabled = false;" > /etc/rspamd/local.d/greylist.conf else echo "[INFO] Greylisting policy is enabled" fi