From a19809a51fd5f5149c5b8e7e1938b0bd35037b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?So=CC=88nke=20Domro=CC=88se?= Date: Wed, 30 Apr 2025 16:30:29 +0200 Subject: [PATCH] budibase email account --- budibase/.env | 6 +++++- restartall.sh | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/budibase/.env b/budibase/.env index 1cd5b5e..4ce4d52 100644 --- a/budibase/.env +++ b/budibase/.env @@ -25,7 +25,11 @@ SQL_MAX_ROWS= # An admin user can be automatically created initially if these are set BB_ADMIN_USER_EMAIL=soenke@domroese.eu BB_ADMIN_USER_PASSWORD=Diavid9600 - +SMTP_USER=mail@domroese.eu +SMTP_PASSWORD=aiVLNjATdm3CyLSCfjNhz4RPqpkvch +SMTP_HOST=pro1.mail.ovh.net +SMTP_PORT=587 +SMTP_FROM_ADDRESS # A path that is watched for plugin bundles. Any bundles found are imported automatically/ PLUGINS_DIR= ROLLING_LOG_MAX_SIZE= diff --git a/restartall.sh b/restartall.sh index 7261659..1bbae66 100755 --- a/restartall.sh +++ b/restartall.sh @@ -1,5 +1,5 @@ for dir in *; do if [ -d "$dir" ]; then - ( cd "$dir" && docker compose down && docker compose pull && docker compose up -d ) + ( cd "$dir" && docker compose pull && docker compose down && docker compose up -d ) fi done