From f7b64f1f895c720ada0031af4050e098518c90b1 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 26 May 2024 12:03:08 -0400 Subject: [PATCH] silence cron stuff --- scripts/ewp-send-new-mail-summary | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/ewp-send-new-mail-summary b/scripts/ewp-send-new-mail-summary index 5f1ecb3..e7adea5 100755 --- a/scripts/ewp-send-new-mail-summary +++ b/scripts/ewp-send-new-mail-summary @@ -13,7 +13,7 @@ new_mail_count=$(echo "$new_mail" | wc -l | tr -d ' ') # If this list is empty, exit if [ -z "$new_mail" ]; then - echo "No new mail" + # echo "No new mail" exit 0 fi @@ -21,5 +21,6 @@ fi echo "q" | mail -N > /dev/null # Otherwise, we can continue to process the new mail -echo "Found ${new_mail_count} new peices of mail" +# NOTE: This line should be commented out for crons. +# echo "Found ${new_mail_count} new peices of mail" echo -e "You have new mail waiting for you on $(hostname):\r\n\r\n${new_mail}" | mail -s "New mail on $(hostname)" "${1}"