Skip to content

Commit f7f72ba

Browse files
committed
Release 4.0.35 - See CHANGELOG.md
1 parent 2f05d76 commit f7f72ba

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 4.0.35 2024-01-14 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Fix issue with emaail notifications and not being able to add from statement
5+
6+
17
## 4.0.34 2024-01-02 <dave at tiredofit dot ca>
28

39
### Changed

install/assets/functions/10-db-backup

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ backup_pgsql() {
760760
write_log debug "Excluding '${db_exclude}' from ALL DB_NAME backups"
761761
db_names=$(echo "$db_names" | sed "/${db_exclude}/d" )
762762
done
763-
_postgres_backup_globals=true
763+
_postgres_backup_globals=true
764764
fi
765765
else
766766
db_names=$(echo "${backup_job_db_name}" | tr ',' '\n')
@@ -1388,7 +1388,7 @@ notify() {
13881388
if [ -z "${SMTP_HOST}" ] ; then write_log error "[notifications] No SMTP_HOST variable set - Skipping sending Email notifications" ; skip_mail=true ; fi
13891389
if [ -z "${SMTP_PORT}" ] ; then write_log error "[notifications] No SMTP_PORT variable set - Skipping sending Email notifications" ; skip_mail=true ; fi
13901390
if var_nottrue "${skip_mail}" ; then
1391-
if ! grep -q ^from /etc/msmptrc ; then
1391+
if ! grep -q ^from /etc/msmtprc ; then
13921392
echo "from ${MAIL_FROM}" >> /etc/msmtprc
13931393
fi
13941394
mail_recipients=$(echo "${MAIL_TO}" | tr "," "\n")

0 commit comments

Comments
 (0)