mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-08-06 19:14:53 +02:00
fix: Prevent stderr
being written to /etc/postfix/main.cf
(#4147)
`stderr` is filtered by `grep` to discard unwanted (expected) log noise when appending the override `postfix-main.cf` content (_updated settings did not replace earlier defined instances_). That `grep` filter introduced a regression into DMS v14 release, since any other `stderr` content not being excluded was now blended into `stdout` and redirected with the original `stdout` output for the `postconf -n` command. The fix is to ensure the `grep` output is redirect to `stderr` to avoid that mishap.
This commit is contained in:
parent
a338c06639
commit
2f8ad142ec
2 changed files with 3 additions and 1 deletions
|
@ -31,6 +31,8 @@ All notable changes to this project will be documented in this file. The format
|
|||
- **Dovecot:**
|
||||
- Update logwatch `ignore.conf` to exclude Xapian messages about pending documents ([#4060](https://github.com/docker-mailserver/docker-mailserver/pull/4060))
|
||||
- `dovecot-fts-xapian` plugin was updated to `1.7.13`, fixing a regression with indexing ([#4095](https://github.com/docker-mailserver/docker-mailserver/pull/4095))
|
||||
- **Internal:**
|
||||
- Fixed a regression introduced in v14 where `postfix-main.cf` appended `stderr` output into `/etc/postfix/main.cf`, causing Postfix startup to fail ([#4147](https://github.com/docker-mailserver/docker-mailserver/pull/4147))
|
||||
|
||||
### CI
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue