diff options
author | EuAndreh <eu@euandre.org> | 2023-03-15 15:57:32 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-15 15:57:32 -0300 |
commit | 79253572b35c09439427721f263f0572b0de0bb6 (patch) | |
tree | c00426e27c26e530f56331109bc84cc634bb90c3 | |
parent | system.scm: Remove unused Postfix extra config (diff) | |
download | toph-79253572b35c09439427721f263f0572b0de0bb6.tar.gz toph-79253572b35c09439427721f263f0572b0de0bb6.tar.xz |
check.sh: Add from root@$HOSTNAME to Subject
Notes
See CI logs with:
git notes --ref=refs/notes/ci-logs show 79253572b35c09439427721f263f0572b0de0bb6
git notes --ref=refs/notes/ci-data show 79253572b35c09439427721f263f0572b0de0bb6
Exit status: 0
Duration: 22
-rwxr-xr-x | src/infrastructure/scripts/check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/infrastructure/scripts/check.sh b/src/infrastructure/scripts/check.sh index 53d088c..ae2abd5 100755 --- a/src/infrastructure/scripts/check.sh +++ b/src/infrastructure/scripts/check.sh @@ -75,5 +75,5 @@ uuid() { } for alias in abuse admin postmaster hostmaster; do - uuid | mail -s "\"$alias\" alias test" "$alias@$(hostname)" + uuid | mail -s "\"$alias\" alias test from $(id -un)@$(hostname)" "$alias@$(hostname)" done |