2024-03-03 21:17:48 +01:00
|
|
|
#!/bin/sh
|
2025-02-11 10:54:41 +01:00
|
|
|
curl --silent smtp://{{ smtp_host }} --mail-from {{ services.restic.mail_from }} \
|
|
|
|
--mail-rcpt admin@data.coop --mail-rcpt datacoop-backup@reynir.dk \
|
2025-02-12 09:01:44 +01:00
|
|
|
--upload-file . << END_OF_MAIL
|
2024-03-04 13:30:58 +01:00
|
|
|
From: Restic backup <{{ services.restic.mail_from }}>
|
2024-03-04 14:15:52 +01:00
|
|
|
To: admin@data.coop
|
2024-03-03 21:17:48 +01:00
|
|
|
Subject: Restic backup failed
|
2025-02-11 10:54:41 +01:00
|
|
|
Date: $(date -R)
|
2025-02-11 11:01:02 +01:00
|
|
|
Message-ID: <$(date +%s.%N)@{{ services.restic.domain }}>
|
2024-03-03 21:17:48 +01:00
|
|
|
|
|
|
|
Dear sir or madam,
|
|
|
|
|
|
|
|
Tonight's backup failed!
|
|
|
|
|
|
|
|
Best,
|
|
|
|
Your backup software.
|
|
|
|
END_OF_MAIL
|