From 1ad6d2bab110a2e35a4c7ebfdced7f2dfd3a075e Mon Sep 17 00:00:00 2001 From: localhorst Date: Fri, 18 Feb 2022 11:38:02 +0100 Subject: [PATCH] changed ssmtp to mailsend --- README.md | 28 +++++++--------------------- check_AutoBackup.sh | 22 ++++++++-------------- 2 files changed, 15 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index c4659d7..6ef796d 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The script monitors the backend of a restic backup. The bash script is executed * no restic authentication needed * multiple repos * individual interval for each repo -* custom email server via [ssmtp](https://wiki.debian.org/sSMTP) +* custom email server via [mailsend](https://github.com/muquit/mailsend/blob/master/doc/examples.mediawiki) * loud alarm buzzer via [FTDI_simple_alarm](https://git.mosad.xyz/localhorst/FTDI_simple_alarm) ## Planned Features @@ -23,22 +23,9 @@ The script monitors the backend of a restic backup. The bash script is executed ## Installation #### 1. download the check_AutoBackup.sh #### 2. chmod +x check_AutoBackup.sh -#### 3. install ssmtp -#### 4. nano /etc/ssmtp/ssmtp.conf +#### 3. install mailsend -```UseSTARTTLS=YES -FromLineOverride=YES -root= -mailhub=mail.yourmailserver.tld:587 -AuthUser=mailuser@maildomain.tld -AuthPass=yourmailuserpassword -``` -#### 5. nano /etc/ssmtp/revaliases -``` -root:mailuser@maildomain.tld:mail.yourmailserver.tld:587 -``` - -#### 6. edit settings in check_AutoBackup.sh +#### 4. edit settings in check_AutoBackup.sh ``` DEBUG="true" #true --> dont send email @@ -47,10 +34,9 @@ backupFolder="./backups" #directory that contains all repos receiverEmail="mailuser@maildomain.tld" senderEmail="mailuser@maildomain.tld" -senderName="AutoBackup Watchdog" ``` -#### 7. edit repo settings in check_AutoBackup.sh +#### 5. edit repo settings in check_AutoBackup.sh ``` repos_name[0]=" first backup repo" @@ -58,10 +44,10 @@ repos_directory[0]="first_repo" #repo in backupFolder repos_interval[0]=21600 #sec repos_interval_tolerance[0]=10 #% ``` -#### 8. install crontab or systemd-timer +#### 6. install crontab or systemd-timer -#### 9. optional install FTDI simple alarm +#### 7. optional install FTDI simple alarm [FTDI_simple_alarm](https://git.mosad.xyz/localhorst/FTDI_simple_alarm) -uncomment line 117 in check_AutoBackup.sh \ No newline at end of file +uncomment line 167 in check_AutoBackup.sh diff --git a/check_AutoBackup.sh b/check_AutoBackup.sh index e82a274..d2e9e09 100644 --- a/check_AutoBackup.sh +++ b/check_AutoBackup.sh @@ -7,14 +7,13 @@ backupFolder="/mnt/hdd/backups/" #directory that contains all repos ######################## ### eMail ### receiverEmail="localhorst@mosad.xyz" -senderEmail="____#@mosad.xyz" -senderName="AutoBackupWatchdog" #no spaces +senderEmail="______________@mosad.xyz" ######################## ######### REPO SETTINGS ######### -repos_name[0]="my home server" -repos_directory[0]="homeserver/" +repos_name[0]="Name" +repos_directory[0]="path" repos_interval[0]=21600 #sec repos_interval_tolerance[0]=10 #% @@ -22,6 +21,7 @@ repos_interval_tolerance[0]=10 #% #repos_directory[1]="another_repo" #repos_interval[1]=21600 #sec #repos_interval_tolerance[1]=10 #% +################################# #repos_name[2]="another backup repo" #repos_directory[2]="another_repo" @@ -55,9 +55,6 @@ do echo "Repo ${repos_directory[i]} doesnt exist!" rm -f mail_content.txt cat >> mail_content.txt < EOL if [ "$DEBUG" = "false" ]; then - ssmtp -f$senderEmail -F$senderName $receiverEmail < mail_content.txt + mailsend -f $senderEmail -t $receiverEmail -sub "AutoBackup Failure ${repos_name[i]}" -smtp mail.emailserver.science -port 587 -starttls -auth -user autobackupwatchdog@mosad.xyz -pass "__PW_DB__" -cs "utf-8" -mime-type "text/html" -msg-body "mail_content.txt" rm mail_content.txt #/etc/init.d/alarm start fi @@ -122,9 +119,6 @@ EOL echo -e "\e[39m " #reset console color to black rm -f mail_content.txt cat >> mail_content.txt <