2020-12-20 14:19:23 +00:00
|
|
|
#!/bin/sh
|
2019-06-12 10:53:59 +00:00
|
|
|
# Sync mail and give notification if there is new mail.
|
|
|
|
|
|
|
|
# Run only if user logged in (prevent cron errors)
|
|
|
|
pgrep -u "$USER" >/dev/null || exit
|
|
|
|
# Run only if not already running in other instance
|
|
|
|
pgrep -x mbsync >/dev/null && exit
|
|
|
|
|
2020-02-27 15:54:57 +00:00
|
|
|
# Needed fo notify-send to work properly when called fron cronjob
|
2020-12-20 14:19:23 +00:00
|
|
|
DISPLAY=":0.0"
|
2019-06-12 10:53:59 +00:00
|
|
|
|
|
|
|
# Sync accounts passed as argument or all.
|
2020-12-20 14:19:23 +00:00
|
|
|
if [ "$#" -eq "0" ]; then
|
|
|
|
accounts="$(awk '/^Group/ {print $2}' "$HOME/.config/mbsync/mbsyncrc")"
|
2019-06-12 10:53:59 +00:00
|
|
|
else
|
2020-12-20 14:19:23 +00:00
|
|
|
for arg in "$@"; do
|
|
|
|
[ "${arg%${arg#?}}" = '-' ] && opts="${opts:+${opts} }${arg}" && shift 1
|
|
|
|
done
|
|
|
|
accounts=$*
|
|
|
|
fi
|
2019-06-12 10:53:59 +00:00
|
|
|
|
2020-12-20 14:19:23 +00:00
|
|
|
pkill -RTMIN+6 "${STATUSBAR:-dwmblocks}"
|
2019-06-12 10:53:59 +00:00
|
|
|
# Parallelize multiple accounts
|
2020-12-20 14:19:23 +00:00
|
|
|
for account in $accounts; do
|
2020-02-27 15:54:57 +00:00
|
|
|
# Check account for new mail. Notify if there is new content.
|
2020-12-20 14:19:23 +00:00
|
|
|
acc="$(echo "$account" | sed "s/.*\///")"
|
2020-03-29 17:12:00 +00:00
|
|
|
mbsync -c ~/.config/mbsync/mbsyncrc "$acc"
|
2020-12-20 14:19:23 +00:00
|
|
|
new="$(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 "/tmp/.mailsynclastrun" 2>/dev/null)"
|
|
|
|
newcount="$(echo "$new" | sed '/^\s*$/d' | wc -l)"
|
|
|
|
if [ "$newcount" -gt "0" ]; then
|
2021-01-20 20:40:15 +00:00
|
|
|
# notify-send -i mutt -c mailtotal "Mail" "$newcount new mail(s) in \`$acc\` account." &
|
2020-12-20 14:19:23 +00:00
|
|
|
for file in $new; do
|
2020-02-27 15:54:57 +00:00
|
|
|
# Extract subject and sender from mail.
|
2020-12-20 14:19:23 +00:00
|
|
|
from="$(awk '/^From: / && ++n ==1,/^\<.*\>:/' "$file" | perl -CS -MEncode -ne 'print decode("MIME-Header", $_)' | awk '{ $1=""; if (NF>=3)$NF=""; print $0 }' | sed 's/^[[:blank:]]*[\"'\''\<]*//;s/[\"'\''\>]*[[:blank:]]*$//')"
|
|
|
|
subject="$(awk '/^Subject: / && ++n == 1,/^\<.*\>: / && ++i == 2' "$file" | head -n-1 | perl -CS -MEncode -ne 'print decode("MIME-Header", $_)' | sed 's/^Subject: //' | sed 's/^{[[:blank:]]*[\"'\''\<]*//;s/[\"'\''\>]*[[:blank:]]*$//' | tr -d '\n')"
|
2021-01-20 20:40:15 +00:00
|
|
|
notify-send -i mutt "$from:" "$subject" &
|
2020-12-20 14:19:23 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
done
|
2019-06-12 10:53:59 +00:00
|
|
|
|
|
|
|
wait
|
|
|
|
|
2019-11-23 14:39:18 +00:00
|
|
|
mu index --muhome=~/.cache/mu --maildir=~/.local/share/mail 2>/dev/null
|
|
|
|
|
2020-03-06 23:34:40 +00:00
|
|
|
# Create a touch file that indicates the time of the last run of mailsync
|
2020-02-02 19:09:46 +00:00
|
|
|
touch "/tmp/.mailsynclastrun"
|
2020-12-20 14:19:23 +00:00
|
|
|
pkill -RTMIN+6 "${STATUSBAR:-dwmblocks}"
|