You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

40 lines
1.4 KiB

  1. #!/bin/sh
  2. # This script will run offlineimap and check
  3. # for new email if there is an internet connection.
  4. #
  5. # If it detects new mail, it uses mpv to play a
  6. # notification sound: notify.opus
  7. #
  8. # I have this run as a cronjob every 5 minutes.
  9. export DISPLAY=:0.0
  10. # Checks for internet connection and set notification script.
  11. # Settings are different for MacOS (Darwin) systems.
  12. if [ "$(uname)" == "Darwin" ]
  13. then
  14. ping -q -t 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit
  15. notify() { osascript -e "display notification \"$2 in $1\" with title \"Youve got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
  16. else
  17. ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit
  18. notify() { pgrep -x dunst && notify-send -i ~/.config/mutt/etc/email.gif "$2 new mail(s) in \`$1\` account." ;}
  19. fi
  20. # Run offlineimap. You can feed this script different settings.
  21. offlineimap -o "$@"
  22. # Check all accounts/mailboxes for new mail. Notify if there is new content.
  23. for account in $(ls ~/.mail)
  24. do
  25. #List unread messages newer than last mailsync and count them
  26. newcount=$(find ~/.mail/$account/INBOX/new/ -type f -newer ~/.config/mutt/etc/mailsynclastrun 2> /dev/null | wc -l)
  27. if [ "$newcount" -gt "0" ]
  28. then
  29. notify "$account" "$newcount" & disown
  30. mpv --quiet ~/.config/mutt/etc/notify.opus
  31. fi
  32. done
  33. #Create a touch file that indicates the time of the last run of mailsync
  34. touch ~/.config/mutt/etc/mailsynclastrun