From 9df71c27a0e8824c6ea14f5ce6d828eed7a9b8dd Mon Sep 17 00:00:00 2001 From: Leon Busch-George Date: Sat, 4 Feb 2023 10:27:10 +0100 Subject: [PATCH] fix: Only listen on `127.0.0.1` for the Dovecot `quota-status` service (#3057) --- target/dovecot/90-quota.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/dovecot/90-quota.conf b/target/dovecot/90-quota.conf index f37f4f28..b1f08d6a 100644 --- a/target/dovecot/90-quota.conf +++ b/target/dovecot/90-quota.conf @@ -42,8 +42,8 @@ service quota-warning { service quota-status { executable = quota-status -p postfix inet_listener { - port = 65265 - # You can choose any port you want + address = 127.0.0.1 + port = 65265 } client_limit = 1 }