mailsync checks inbox case insens

This commit is contained in:
Luke Smith 2019-04-19 18:20:10 -04:00
parent 36eaa07075
commit 927a95bd2c
No known key found for this signature in database
GPG Key ID: 4C50B54A911F6252

View File

@ -25,7 +25,7 @@ pkill -RTMIN+12 i3blocks
for account in "$HOME/.local/share/mail/"*
do
acc="$(echo "$account" | sed "s/.*\///")"
newcount=$(find "$HOME/.local/share/mail/$acc/INBOX/new/" -type f -newer "$HOME/.config/mutt/bin/.mailsynclastrun" 2> /dev/null | wc -l)
newcount=$(find "$HOME/.local/share/mail/$acc/INBOX/new/" "$HOME/.local/share/mail/$acc/Inbox/new/" "$HOME/.local/share/mail/$acc/inbox/new/" -type f -newer "$HOME/.config/mutt/bin/.mailsynclastrun" 2> /dev/null | wc -l)
[ "$newcount" -gt "0" ] && notify "$acc" "$newcount" &
done
notmuch new 2>/dev/null