2020-02-27 15:54:57 +00:00
#!/usr/bin/env fish
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
set -x DISPLAY ":0.0"
2019-06-12 10:53:59 +00:00
# Sync accounts passed as argument or all.
2020-02-27 15:54:57 +00:00
if count $argv >/dev/null
set accounts $argv[1]
2019-06-12 10:53:59 +00:00
else
2020-02-27 15:54:57 +00:00
set accounts (awk '/^Group/ {print $2}' "$HOME/.mbsyncrc")
end
2019-06-12 10:53:59 +00:00
# Parallelize multiple accounts
for account in $accounts
2020-02-27 15:54:57 +00:00
# Check account for new mail. Notify if there is new content.
set acc (echo "$account" | sed "s/.*\///")
mbsync "$acc"
set 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)
set newcount (echo "$new" | sed '/^\s*$/d' | wc -l)
if [ $newcount -gt "0" ]
2020-03-06 23:34:40 +00:00
# notify-send.py -i mutt -c mailtotal "Mail" "$newcount new mail(s) in \`$acc\` account." &
2020-02-27 15:54:57 +00:00
for file in $new
# Extract subject and sender from mail.
set 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:]]*$//')
set 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')
2020-03-06 23:34:40 +00:00
notify-send.py -i mutt "$from:" "$subject" &
2020-02-27 15:54:57 +00:00
end
end
end
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"