changed the default of DOVECOT_COMMUNITY_REPO to 0

This commit is contained in:
georglauterbach 2023-12-04 00:55:18 +01:00
parent ef6639f8dd
commit c9be8cd118
No known key found for this signature in database
GPG key ID: F367F7C43C118578
2 changed files with 2 additions and 1 deletions

View file

@ -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 (<https://www.postfix.org/COMPATIBILITY_README.html#respectful_logging>) ([#3403](https://github.com/docker-mailserver/docker-mailserver/pull/3403))

View file

@ -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