mirror of
https://github.com/tiredofit/docker-db-backup.git
synced 2025-12-22 13:44:08 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7f72ba2c1 | ||
|
|
2f05d76f4e | ||
|
|
c9a634ff25 |
@@ -1,3 +1,9 @@
|
|||||||
|
## 4.0.35 2024-01-14 <dave at tiredofit dot ca>
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Fix issue with emaail notifications and not being able to add from statement
|
||||||
|
|
||||||
|
|
||||||
## 4.0.34 2024-01-02 <dave at tiredofit dot ca>
|
## 4.0.34 2024-01-02 <dave at tiredofit dot ca>
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -1388,7 +1388,7 @@ notify() {
|
|||||||
if [ -z "${SMTP_HOST}" ] ; then write_log error "[notifications] No SMTP_HOST variable set - Skipping sending Email notifications" ; skip_mail=true ; fi
|
if [ -z "${SMTP_HOST}" ] ; then write_log error "[notifications] No SMTP_HOST variable set - Skipping sending Email notifications" ; skip_mail=true ; fi
|
||||||
if [ -z "${SMTP_PORT}" ] ; then write_log error "[notifications] No SMTP_PORT variable set - Skipping sending Email notifications" ; skip_mail=true ; fi
|
if [ -z "${SMTP_PORT}" ] ; then write_log error "[notifications] No SMTP_PORT variable set - Skipping sending Email notifications" ; skip_mail=true ; fi
|
||||||
if var_nottrue "${skip_mail}" ; then
|
if var_nottrue "${skip_mail}" ; then
|
||||||
if ! grep -q ^from /etc/msmptrc ; then
|
if ! grep -q ^from /etc/msmtprc ; then
|
||||||
echo "from ${MAIL_FROM}" >> /etc/msmtprc
|
echo "from ${MAIL_FROM}" >> /etc/msmtprc
|
||||||
fi
|
fi
|
||||||
mail_recipients=$(echo "${MAIL_TO}" | tr "," "\n")
|
mail_recipients=$(echo "${MAIL_TO}" | tr "," "\n")
|
||||||
|
|||||||
Reference in New Issue
Block a user