mirror of
https://github.com/mag37/dockcheck.git
synced 2026-02-14 15:28:22 +01:00
* Add file notification channel * Bypass file channel notifications for dockcheck.sh script * Implement notification channel template reuse and advanced configuration variables. * Fix text insertion formatting for dockcheck script and container updates. * Fix dockcheck.sh notification csv and text output. * Fix ntfy variable references and replace tr for uppercase conversion. * Fix ALLOWEMPTY logic, undefined snippet case, and README formatting. * Refactor notification send/skip logic. Adjust missing variable return codes. * Adjust notifications README section for clarity and readability. --------- Co-authored-by: Matthew Oleksowicz <matt@everyoneneeds.it>
69 lines
2.4 KiB
Bash
69 lines
2.4 KiB
Bash
### DISCLAIMER: This is a third party addition to dockcheck - best effort testing.
|
|
NOTIFY_DSM_VERSION="v0.5"
|
|
# INFO: ssmtp is deprecated - consider to use msmtp instead.
|
|
#
|
|
# mSMTP/sSMTP has to be installed and configured manually.
|
|
# The existing DSM Notification Email configuration will be used automatically.
|
|
# Leave (or place) this file in the "notify_templates" subdirectory within the same directory as the main dockcheck.sh script.
|
|
# If you instead wish make your own modifications, make a copy in the same directory as the main dockcheck.sh script.
|
|
# Do not modify this file directly within the "notify_templates" subdirectory. Set DSM_SENDMAILTO and DSM_SUBJECTTAG in your dockcheck.config file.
|
|
|
|
MSMTP=$(which msmtp)
|
|
SSMTP=$(which ssmtp)
|
|
SENDMAIL=$(which sendmail)
|
|
|
|
if [ -n "$MSMTP" ] ; then
|
|
MailPkg=$MSMTP
|
|
elif [ -n "$SSMTP" ] ; then
|
|
MailPkg=$SSMTP
|
|
elif [ -n "$SENDMAIL" ] ; then
|
|
MailPkg=$SENDMAIL
|
|
else
|
|
echo "No msmtp, ssmtp or sendmail binary found in PATH: $PATH" ; exit 1
|
|
fi
|
|
|
|
trigger_DSM_notification() {
|
|
if [[ -n "$1" ]]; then
|
|
DSM_channel="$1"
|
|
else
|
|
DSM_channel="DSM"
|
|
fi
|
|
|
|
UpperChannel="${DSM_channel^^}"
|
|
|
|
DSMSendmailToVar="${UpperChannel}_SENDMAILTO"
|
|
DSMSubjectTagVar="${UpperChannel}_SUBJECTTAG"
|
|
|
|
CfgFile="/usr/syno/etc/synosmtp.conf"
|
|
|
|
# User variables:
|
|
# Automatically sends to your usual destination for synology DSM notification emails.
|
|
# You can also manually override by assigning something else to DSM_SENDMAILTO in dockcheck.config.
|
|
SendMailTo=${!DSMSendmailToVar:-$(grep 'eventmail1' $CfgFile | sed -n 's/.*"\([^"]*\)".*/\1/p')}
|
|
# e.g. DSM_SENDMAILTO="me@mydomain.com"
|
|
|
|
SubjectTag=${!DSMSubjectTagVar:-$(grep 'eventsubjectprefix' $CfgFile | sed -n 's/.*"\([^"]*\)".*/\1/p')}
|
|
# e.g. DSM_SUBJECTTAG="Email Subject Prefix"
|
|
SenderName=$(grep 'smtp_from_name' $CfgFile | sed -n 's/.*"\([^"]*\)".*/\1/p')
|
|
SenderMail=$(grep 'smtp_from_mail' $CfgFile | sed -n 's/.*"\([^"]*\)".*/\1/p')
|
|
SenderMail=${SenderMail:-$(grep 'eventmail1' $CfgFile | sed -n 's/.*"\([^"]*\)".*/\1/p')}
|
|
|
|
$MailPkg $SendMailTo << __EOF
|
|
From: "$SenderName" <$SenderMail>
|
|
date:$(date -R)
|
|
To: <$SendMailTo>
|
|
Subject: $SubjectTag $MessageTitle
|
|
Content-Type: text/plain; charset=UTF-8; format=flowed
|
|
Content-Transfer-Encoding: 7bit
|
|
|
|
$MessageBody
|
|
From $SenderName
|
|
__EOF
|
|
|
|
if [[ $? -gt 0 ]]; then
|
|
NotifyError=true
|
|
fi
|
|
|
|
# This ensures DSM's container manager will also see the update
|
|
/var/packages/ContainerManager/target/tool/image_upgradable_checker
|
|
}
|