-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6006 from mailcow/fix/issue-5986
flatcurve-fts: limit tokenizers size in e-mail adress
- Loading branch information
Showing
2 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM alpine:3.20 | ||
|
||
LABEL maintainer = "The Infrastructure Company GmbH <[email protected]>" | ||
LABEL maintainer="The Infrastructure Company GmbH <[email protected]>" | ||
|
||
# renovate: datasource=github-releases depName=tianon/gosu versioning=semver-coerced extractVersion=^(?<version>.*)$ | ||
ARG GOSU_VERSION=1.16 | ||
|
||
ENV LANG C.UTF-8 | ||
ENV LC_ALL C.UTF-8 | ||
ENV LANG=C.UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
|
||
# Add groups and users before installing Dovecot to not break compatibility | ||
RUN addgroup -g 5000 vmail \ | ||
|
@@ -133,4 +133,4 @@ COPY repl_health.sh /usr/local/bin/repl_health.sh | |
COPY optimize-fts.sh /usr/local/bin/optimize-fts.sh | ||
|
||
ENTRYPOINT ["/docker-entrypoint.sh"] | ||
CMD exec /usr/bin/supervisord -c /etc/supervisor/supervisord.conf | ||
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters