From d8872eb3cc013165da5c3c47e795e73b61a90e60 Mon Sep 17 00:00:00 2001 From: Ryan Inch Date: Fri, 27 Feb 2026 05:51:14 -0500 Subject: [PATCH] Support sending emails by Swoosh What: Updates the Reticulum mailer configuration in the hcce.yam template file to use the variable name "relay" as well as "server" for the SMTP server. Why: Swoosh expects "relay" not "server", and it's passed in directly so there isn't a chance to change it in Reticulum before it's passed to Swoosh. Notes: The old server variable is kept around so that this doesn't break Reticulum images that use Bamboo. This is mainly for debugging/comparison purposes. Users shouldn't need to change anything in input-values.yaml, but will need to regenerate their hcce.yaml and redeploy their instance with the new configuration. --- community-edition/generate_script/hcce.yam | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/community-edition/generate_script/hcce.yam b/community-edition/generate_script/hcce.yam index 4d1e919b..46442274 100644 --- a/community-edition/generate_script/hcce.yam +++ b/community-edition/generate_script/hcce.yam @@ -328,11 +328,13 @@ data: from = "noreply@" [ret."Elixir.Ret.Mailer"] - server = "" + relay = "" port = "" username = "" password = "" + server = "" # deprecated - kept for old Reticulum/Bamboo compatibility. + [ret."Elixir.Ret.Support"] slack_webhook_url = ""