From b5f6bb66c5eb3ea0f70b7dac4e97655c368bbb8e Mon Sep 17 00:00:00 2001 From: Martin Bhuong Date: Mon, 29 Jul 2024 05:34:44 +0200 Subject: [PATCH] revert mail config-- seems wrong mapping on app --- .../actions/configure-module/10configure_environment_vars | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imageroot/actions/configure-module/10configure_environment_vars b/imageroot/actions/configure-module/10configure_environment_vars index f1e567b..834bf70 100755 --- a/imageroot/actions/configure-module/10configure_environment_vars +++ b/imageroot/actions/configure-module/10configure_environment_vars @@ -52,8 +52,8 @@ app_config = { "MAILER_PORT": SMTP_PORT, "MAILER_AUTH_USER": SMTP_USERNAME, "MAILER_AUTH_PASSWORD": SMTP_PASSWORD, - "MAILER_NOREPLY_EMAIL": SMTP_USERNAME, - "MAILER_NOREPLY_NAME": "JoplinServer", + "MAILER_NOREPLY_EMAIL": "JoplinServer", + "MAILER_NOREPLY_NAME": SMTP_USERNAME, } agent.write_env("app.env", app_config)