From c9be8cd118a5dd096b4e049a35b8f752f5b71ec8 Mon Sep 17 00:00:00 2001 From: georglauterbach <44545919+georglauterbach@users.noreply.github.com> Date: Mon, 4 Dec 2023 00:55:18 +0100 Subject: [PATCH] changed the default of `DOVECOT_COMMUNITY_REPO` to `0` --- CHANGELOG.md | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64331cd2..47615735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ The most noteworthy change of this release is the update of the container's base ### Breaking - **updated base image to Debian 12** +- changed the default of `DOVECOT_COMMUNITY_REPO` to `0` (disabled) - the Dovecot community repo will (for now) not be the default when building the DMS - updated packages: for an overview, [we have a review comment on the PR that introduces Debian 12](https://github.com/docker-mailserver/docker-mailserver/pull/3403#issuecomment-1694563615) - Postfix - `postscreen_dnsbl_whitelist_threshold` was renamed to `postscreen_dnsbl_allowlist_threshold`: this may affect users that monitor logs affected by this change () ([#3403](https://github.com/docker-mailserver/docker-mailserver/pull/3403)) diff --git a/Dockerfile b/Dockerfile index 76620187..e1ac3064 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # This is in preparation for more granular stages (eg ClamAV and Fail2Ban split into their own) ARG DEBIAN_FRONTEND=noninteractive -ARG DOVECOT_COMMUNITY_REPO=1 +ARG DOVECOT_COMMUNITY_REPO=0 ARG LOG_LEVEL=trace FROM docker.io/debian:12-slim AS stage-base