From 1170adc1d4b5a229495903c47b37de36f6267ea9 Mon Sep 17 00:00:00 2001 From: Keonik1 Date: Tue, 7 Oct 2025 20:36:55 +0200 Subject: [PATCH] cmdeploy: start and enable fcgiwrap --- CHANGELOG.md | 3 +++ cmdeploy/src/cmdeploy/__init__.py | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8307c08..2de32241 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ - Use max username length in newemail.py, not min ([#648](https://github.com/chatmail/relay/pull/648)) +- Add startup for `fcgiwrap.service` because sometimes it did not start automatically. + ([#657](https://github.com/chatmail/relay/pull/657)) + - Increase maxproc for reinjecting ports from 10 to 100 ([#646](https://github.com/chatmail/relay/pull/646)) diff --git a/cmdeploy/src/cmdeploy/__init__.py b/cmdeploy/src/cmdeploy/__init__.py index 2aad8526..ed8db28a 100644 --- a/cmdeploy/src/cmdeploy/__init__.py +++ b/cmdeploy/src/cmdeploy/__init__.py @@ -814,6 +814,13 @@ def deploy_chatmail(config_path: Path, disable_mail: bool) -> None: restarted=nginx_need_restart, ) + systemd.service( + name="Start and enable fcgiwrap", + service="fcgiwrap.service", + running=True, + enabled=True, + ) + systemd.service( name="Restart echobot if postfix and dovecot were just started", service="echobot.service",