From fef238db6d4749173abe61f90b03acd20128bd9f Mon Sep 17 00:00:00 2001 From: Paul Payne Date: Mon, 4 Aug 2025 16:01:32 -0700 Subject: [PATCH] Get SMTP connection sercurity config during service setup. --- setup/cluster-services/smtp/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/cluster-services/smtp/install.sh b/setup/cluster-services/smtp/install.sh index 34933fb..5e629db 100755 --- a/setup/cluster-services/smtp/install.sh +++ b/setup/cluster-services/smtp/install.sh @@ -24,7 +24,8 @@ prompt_if_unset_config "cloud.smtp.host" "Enter SMTP host (e.g., email-smtp.us-e prompt_if_unset_config "cloud.smtp.port" "Enter SMTP port (usually 465 for SSL, 587 for STARTTLS)" "465" prompt_if_unset_config "cloud.smtp.user" "Enter SMTP username/access key" "" prompt_if_unset_config "cloud.smtp.from" "Enter default 'from' email address" "no-reply@$(wild-config cloud.domain)" - +prompt_if_unset_config "cloud.smtp.tls" "Enable TLS? (true/false)" "true" +prompt_if_unset_config "cloud.smtp.startTls" "Enable STARTTLS? (true/false)" "true" print_success "SMTP configuration collected successfully" # Collect SMTP password/secret