From 564b704803642b3ace329a5e24680b64fced45f8 Mon Sep 17 00:00:00 2001 From: daniel-c-harvey Date: Tue, 23 Jun 2026 05:26:48 -0400 Subject: [PATCH] fix(installer): prompt for and write AuthBlocks:Email:From Without this field, DeepDrftAPI throws InvalidOperationException on startup. Adds the EMAIL_FROM prompt after EMAIL_TOKEN, writes "From" into the Email JSON object, and unsets the variable on cleanup. --- deploy/setup-step10-creds.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deploy/setup-step10-creds.sh b/deploy/setup-step10-creds.sh index e51086c..1fdc37b 100644 --- a/deploy/setup-step10-creds.sh +++ b/deploy/setup-step10-creds.sh @@ -181,6 +181,7 @@ if need_cred "authblocks"; then read -rp " Email host (SMTP server or API host): " EMAIL_HOST read -rsp " Email token (API key / SMTP password): " EMAIL_TOKEN echo + read -rp " Sender email address (From:, e.g. noreply@${DOMAIN_PUBLIC}): " EMAIL_FROM # Admin account echo @@ -201,10 +202,10 @@ if need_cred "authblocks"; then read -rp " Support email address: " SUPPORT_EMAIL write_cred "authblocks" "$(cat <