From 9a9bda80b18a560cae732c29417e0832b7c14280 Mon Sep 17 00:00:00 2001 From: missytake Date: Thu, 30 Jul 2026 10:15:58 +0200 Subject: [PATCH] fix: ss -tulpn can sometimes show dovecot first --- cmdeploy/src/cmdeploy/deployers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmdeploy/src/cmdeploy/deployers.py b/cmdeploy/src/cmdeploy/deployers.py index de110036..b2e8e53c 100644 --- a/cmdeploy/src/cmdeploy/deployers.py +++ b/cmdeploy/src/cmdeploy/deployers.py @@ -520,10 +520,10 @@ def deploy_chatmail(config_path: Path, disable_mail: bool, website_only: bool) - ("nginx", 443), (["master", "smtpd"], 465), (["master", "smtpd"], 587), - (["imap-login", "dovecot"], 993), + (["dovecot", "imap-login"], 993), ("iroh-relay", 3340), ("mtail", 3903), - ("stats", 3904), + (["dovecot", "stats"], 3904), ("nginx", 8443), (["master", "smtpd"], config.postfix_reinject_port), (["master", "smtpd"], config.postfix_reinject_port_incoming),