From c496425203b45a3df9741adb995952cc77bf80d6 Mon Sep 17 00:00:00 2001 From: Alex Palaistras Date: Thu, 4 Jan 2024 11:23:27 +0000 Subject: [PATCH] dovecot: Fix UID for `virtual` user --- service/dovecot/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/dovecot/Containerfile b/service/dovecot/Containerfile index 1419ad7..c3672c7 100644 --- a/service/dovecot/Containerfile +++ b/service/dovecot/Containerfile @@ -11,7 +11,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \ dovecot-sieve=1:${VERSION}* dovecot-managesieved=1:${VERSION}* dovecot-fts-xapian && \ rm -Rf /etc/dovecot -RUN adduser --system --group --uid 10000 --home /var/mail/virtual virtual +RUN adduser --system --group --uid 5000 --home /var/mail/virtual virtual COPY container/config /etc/dovecot COPY container/run-dovecot /run-dovecot