From 435d10643dfa6e01fca691b24e17c69185d3cc93 Mon Sep 17 00:00:00 2001 From: Andre Knieschewski Date: Thu, 11 Dec 2025 17:18:01 +0100 Subject: [PATCH] =?UTF-8?q?Anpassungen=20f=C3=BCr=20mehrere=20Empf=C3=A4ng?= =?UTF-8?q?er?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- update/hisinone_bi_qisserver/modules_update.sh | 4 ++-- upgrade/hisinone_bi_qisserver/modules_upgrade.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/update/hisinone_bi_qisserver/modules_update.sh b/update/hisinone_bi_qisserver/modules_update.sh index e1808fe..ba4e506 100755 --- a/update/hisinone_bi_qisserver/modules_update.sh +++ b/update/hisinone_bi_qisserver/modules_update.sh @@ -53,7 +53,7 @@ send_log_mail() { shift 2 if [ -n "${MAILPROG:-}" ] && [ -n "${LOGMAIL:-}" ]; then - $MAILPROG -s "$subject" "$@" "$LOGMAIL" <"$body_file" + $MAILPROG -s "$subject" "$@" $LOGMAIL <"$body_file" fi } @@ -72,7 +72,7 @@ send_error_mail() { fi if [ -n "${MAILPROG:-}" ] && [ -n "$recipient" ]; then - $MAILPROG -s "$subject" "$@" "$recipient" <"$body_file" + $MAILPROG -s "$subject" "$@" $recipient <"$body_file" fi } diff --git a/upgrade/hisinone_bi_qisserver/modules_upgrade.sh b/upgrade/hisinone_bi_qisserver/modules_upgrade.sh index 0d192eb..c0c4fe8 100755 --- a/upgrade/hisinone_bi_qisserver/modules_upgrade.sh +++ b/upgrade/hisinone_bi_qisserver/modules_upgrade.sh @@ -56,7 +56,7 @@ send_log_mail() { shift 2 if [ -n "${MAILPROG:-}" ] && [ -n "${LOGMAIL:-}" ]; then - $MAILPROG -s "$subject" "$@" "$LOGMAIL" <"$body_file" + $MAILPROG -s "$subject" "$@" $LOGMAIL <"$body_file" fi } @@ -75,7 +75,7 @@ send_error_mail() { fi if [ -n "${MAILPROG:-}" ] && [ -n "$recipient" ]; then - $MAILPROG -s "$subject" "$@" "$recipient" <"$body_file" + $MAILPROG -s "$subject" "$@" $recipient <"$body_file" fi }