1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-19 21:01:31 +00:00

[Dovecot] Suppress doveconf -P output on startup

This commit is contained in:
FreddleSpl0it
2025-05-22 13:35:18 +02:00
parent c38a4c203e
commit 3eb17a5f78
2 changed files with 14 additions and 17 deletions

View File

@@ -272,7 +272,7 @@ class Bootstrap(BootstrapBase):
"""
try:
result = self.run_command(["doveconf", "-P"], check=True)
result = self.run_command(["doveconf", "-P"], check=True, log_output=False)
pubkey_path = None
for line in result.stdout.splitlines():
if "mail_crypt_global_public_key" in line: