From fc65072edb2db9dd58fe8b97c4a189aed72c96a6 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 17 Sep 2025 18:49:32 +0000 Subject: [PATCH] Allow ports 143 and 993 to be used by dovecot process --- cmdeploy/src/cmdeploy/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmdeploy/src/cmdeploy/__init__.py b/cmdeploy/src/cmdeploy/__init__.py index 4523be1d..f83f2ae4 100644 --- a/cmdeploy/src/cmdeploy/__init__.py +++ b/cmdeploy/src/cmdeploy/__init__.py @@ -679,11 +679,11 @@ def deploy_chatmail(config_path: Path, disable_mail: bool) -> None: (["master", "smtpd"], 25), ("unbound", 53), ("acmetool", 80), - ("imap-login", 143), + (["imap-login", "dovecot"], 143), ("nginx", 443), (["master", "smtpd"], 465), (["master", "smtpd"], 587), - ("imap-login", 993), + (["imap-login", "dovecot"], 993), ("iroh-relay", 3340), ("nginx", 8443), (["master", "smtpd"], config.postfix_reinject_port),