From b953d34c0b3fa5c3430e316947f057c3fe3a5ad0 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 26 May 2024 11:54:15 -0400 Subject: [PATCH] Add a script that can watch for new mail on remote systems. --- scripts/ewp-send-new-mail-summary | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 scripts/ewp-send-new-mail-summary diff --git a/scripts/ewp-send-new-mail-summary b/scripts/ewp-send-new-mail-summary new file mode 100644 index 0000000..c404f04 --- /dev/null +++ b/scripts/ewp-send-new-mail-summary @@ -0,0 +1,21 @@ +#! /usr/bin/env bash +set -e + +# We require one argument (destination) +if [ "$#" -ne 1 ]; then + echo "Usage: $0 " + exit 1 +fi + +# Read a list of all new mail +new_mail=$(mail -H | grep "^.N") + +# If this list is empty, exit +if [ -z "$new_mail" ]; then + echo "No new mail" + exit 0 +fi + +# Otherwise, we can continue to process the new mail +echo "Found $(echo "$new_mail" | wc -l) new peices of mail" +echo "You have new mail waiting for you on $(hostname).\n\n${new_mail}" | mail -s "New mail on $(hostname)" "${1}"