mutt-wizard/bin/mailsync

41 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-10-07 21:45:44 +02:00
#!/usr/bin/env sh
2019-04-11 19:39:47 +02:00
# This script will run mbsync and check
2018-03-06 07:38:22 +01:00
# 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.
# Checks for internet connection and set notification script.
ping -q -c 1 1.1.1.1 > /dev/null || exit
2019-03-13 21:50:41 +01:00
export DISPLAY=:0.0
# Settings are different for MacOS (Darwin) systems.
2019-03-13 21:50:41 +01:00
if [ "$(uname)" = "Darwin" ]; then
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-04-12 05:16:21 +02:00
notify() { paplay "$HOME/.config/mutt/bin/notify.ogg" & notify-send "mutt-wizard" "📬 $2 new mail(s) in \`$1\` account." ;}
fi
2018-03-06 07:38:22 +01:00
2019-02-19 02:44:25 +01:00
echo " 🔃" > /tmp/imapsyncicon
pkill -RTMIN+12 i3blocks
2019-04-11 19:39:47 +02:00
# Run mbsync. You can feed this script different settings.
mbsync -a "$@"
2019-02-19 02:44:25 +01:00
rm -f /tmp/imapsyncicon
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.
2019-03-13 21:50:41 +01:00
for account in "$HOME/.local/share/mail/"*
do
2019-03-13 21:50:41 +01:00
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" -gt "0" ] && notify "$acc" "$newcount" &
done
2019-04-11 19:39:47 +02:00
notmuch new 2>/dev/null
#Create a touch file that indicates the time of the last run of mailsync
2019-03-13 21:50:41 +01:00
touch "$HOME/.config/mutt/bin/.mailsynclastrun"