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 1/2] 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 From 2e6602be855fb476641011e27b24825d79270115 Mon Sep 17 00:00:00 2001 From: Adrien DAURIAT <16813527+dauriata@users.noreply.github.com> Date: Sat, 12 Sep 2026 10:44:15 +0200 Subject: [PATCH 2/2] Fix greylisting config file name in test --- test/reverse.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/reverse.bats b/test/reverse.bats index e70b5b3..9d1a575 100644 --- a/test/reverse.bats +++ b/test/reverse.bats @@ -327,7 +327,7 @@ load 'test_helper/bats-assert/load' } @test "checking rspamd: greylisting policy is disabled (reverse configuration)" { - run docker exec mailserver_reverse cat /etc/rspamd/local.d/greylisting.conf + run docker exec mailserver_reverse cat /etc/rspamd/local.d/greylist.conf assert_success assert_output "enabled = false;" }