From f0551808561c171e216194b6b1c47948e5b530db Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 26 May 2024 11:55:27 -0400 Subject: [PATCH] Fix a loop bug --- scripts/ewp-send-new-mail-summary | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/ewp-send-new-mail-summary b/scripts/ewp-send-new-mail-summary index c404f04..decc19c 100644 --- a/scripts/ewp-send-new-mail-summary +++ b/scripts/ewp-send-new-mail-summary @@ -16,6 +16,9 @@ if [ -z "$new_mail" ]; then exit 0 fi +# Make sure to mark all new mail as "unread" so we don't get in a loop. +echo "q" | mail -N + # 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}"