mutt-wizard/etc/mailsync.sh

45 lines
1.5 KiB
Bash
Raw Normal View History

2018-10-07 21:45:44 +02:00
#!/usr/bin/env sh
2018-03-06 07:38:22 +01:00
# This script will run offlineimap and check
# for new email if there is an internet connection.
#
# If it detects new mail, it uses mpv to play a
# notification sound: notify.opus
#
# I have this run as a cronjob every 5 minutes.
export DISPLAY=:0.0
# Checks for internet connection and set notification script.
# Settings are different for MacOS (Darwin) systems.
2018-10-07 21:45:44 +02:00
if [ "$(uname)" = "Darwin" ]
then
2019-02-11 22:44:44 +01:00
ping -q -c 1 1.1.1.1 > /dev/null || exit
2018-08-24 06:49:27 +02:00
notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
else
2019-02-11 22:44:44 +01:00
ping -q -c 1 1.1.1.1 > /dev/null || exit
2018-08-24 06:49:27 +02:00
notify() { mpv --really-quiet ~/.config/mutt/etc/notify.opus & pgrep -x dunst && notify-send -i ~/.config/mutt/etc/email.gif "$2 new mail(s) in \`$1\` account." ;}
fi
2018-03-06 07:38:22 +01:00
2019-01-05 01:17:45 +01:00
echo " 🔃" > ~/.config/mutt/.dl
pkill -RTMIN+12 i3blocks
# Run offlineimap. You can feed this script different settings.
offlineimap -o "$@"
rm -f ~/.config/mutt/.dl
pkill -RTMIN+12 i3blocks
2018-03-06 07:38:22 +01:00
# Check all accounts/mailboxes for new mail. Notify if there is new content.
for account in $(ls ~/.mail)
do
#List unread messages newer than last mailsync and count them
2018-10-31 03:52:01 +01:00
newcount=$(find ~/.mail/"$account"/INBOX/new/ -type f -newer ~/.config/mutt/etc/.mailsynclastrun 2> /dev/null | wc -l)
if [ "$newcount" -gt "0" ]
then
2018-10-14 19:02:58 +02:00
notify "$account" "$newcount" &
fi
done
2018-07-24 02:35:46 +02:00
notmuch new
#Create a touch file that indicates the time of the last run of mailsync
2018-10-31 03:52:01 +01:00
touch ~/.config/mutt/etc/.mailsynclastrun