From f15bcbff145029c40705aa51501caf2014733071 Mon Sep 17 00:00:00 2001 From: Philip Nelson Date: Thu, 15 Mar 2018 01:02:50 -0400 Subject: [PATCH] Added the quiet option for offline imap so the users /var/mail/user cache doesn't fill up so quickly --- etc/mailsync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/mailsync.sh b/etc/mailsync.sh index 4810ce7..05b0731 100755 --- a/etc/mailsync.sh +++ b/etc/mailsync.sh @@ -17,7 +17,7 @@ fi # Get current number of new mail, then begin sync. ori=$(find ~/.mail -wholename '*/new/*' | grep -vi "spam\|trash\|junk" | wc -l) -offlineimap -o +offlineimap -u quiet -o # Recount new mail. new=$(find ~/.mail -wholename '*/new/*' | grep -vi "spam\|trash\|junk" | wc -l)