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",