From 30c1c0d2ae1ea4439986b1868557bbd2cc9e297a Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Fri, 1 Jul 2022 17:35:52 -0400 Subject: [PATCH] fix #785 since cron now silent --- bin/mailsync | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/mailsync b/bin/mailsync index f100cd0..c924de5 100755 --- a/bin/mailsync +++ b/bin/mailsync @@ -11,8 +11,6 @@ # issues. It also should at least be compatible with Linux (and maybe BSD) with # Xorg and MacOS as well. -# Run only if user logged in (prevent cron errors) -pgrep -u "${USER:=$LOGNAME}" >/dev/null || { echo "$USER not logged in; sync will not run."; exit ;} # Run only if not already running in other instance pgrep mbsync >/dev/null && { echo "mbsync is already running."; exit ;}