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.
 
 
 
 

90 lines
3.5 KiB

  1. #!/bin/sh
  2. # - Syncs mail for all accounts, or a single account given as an argument.
  3. # - Displays a notification showing the number of new mails.
  4. # - Displays a notification for each new mail with its subject displayed.
  5. # - Runs notmuch to index new mail.
  6. # - This script can be set up as a cron job for automated mail syncing.
  7. # There are many arbitrary and ugly features in this script because it is
  8. # inherently difficult to pass environmental variables to cronjobs and other
  9. # issues. It also should at least be compatible with Linux (and maybe BSD) with
  10. # Xorg and MacOS as well.
  11. # Run only if user logged in (prevent cron errors)
  12. pgrep -u "${USER:=$LOGNAME}" >/dev/null || { echo "$USER not logged in; sync will not run."; exit ;}
  13. # Run only if not already running in other instance
  14. pgrep mbsync >/dev/null && { echo "mbsync is already running."; exit ;}
  15. # First, we have to get the right variables for the mbsync file, the pass
  16. # archive, notmuch and the GPG home. This is done by searching common profile
  17. # files for variable assignments. This is ugly, but there are few options that
  18. # will work on the maximum number of machines.
  19. eval "$(grep -h -- \
  20. "^\s*\(export \)\?\(MBSYNCRC\|PASSWORD_STORE_DIR\|NOTMUCH_CONFIG\|GNUPGHOME\)=" \
  21. "$HOME/.profile" "$HOME/.bash_profile" "$HOME/.zprofile" "$HOME/.config/zsh/.zprofile" "$HOME/.zshenv" \
  22. "$HOME/.bashrc" "$HOME/.zshrc" "$HOME/.config/zsh/.zshrc" "$HOME/.pam_environment" 2>/dev/null)"
  23. export GPG_TTY="$(tty)"
  24. [ -n "$MBSYNCRC" ] && alias mbsync="mbsync -c $MBSYNCRC" || MBSYNCRC="$HOME/.mbsyncrc"
  25. # Settings are different for MacOS (Darwin) systems.
  26. case "$(uname)" in
  27. Darwin)
  28. notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
  29. ;;
  30. *)
  31. case "$(readlink -f /sbin/init)" in
  32. *systemd*|*openrc*) export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus ;;
  33. esac
  34. # remember if a display server is running since `ps` doesn't always contain a display
  35. pgrepoutput="$(pgrep -a X\(org\|wayland\))"
  36. displays="$(echo "$pgrepoutput" | grep -wo "[0-9]*:[0-9]\+" | sort -u)"
  37. notify() { [ -n "$pgrepoutput" ] && for x in ${displays:-0:}; do
  38. export DISPLAY=$x
  39. notify-send --app-name="mutt-wizard" "New mail!" "📬 $2 new mail(s) in \`$1\` account."
  40. done ;}
  41. ;;
  42. esac
  43. # Check account for new mail. Notify if there is new content.
  44. syncandnotify() {
  45. acc="$(echo "$account" | sed "s/.*\///")"
  46. if [ -z "$opts" ]; then mbsync "$acc"; else mbsync "$opts" "$acc"; fi
  47. new=$(find\
  48. "$HOME/.local/share/mail/$acc/INBOX/new/"\
  49. "$HOME/.local/share/mail/$acc/Inbox/new/"\
  50. "$HOME/.local/share/mail/$acc/inbox/new/"\
  51. "$HOME/.local/share/mail/$acc/INBOX/cur/"\
  52. "$HOME/.local/share/mail/$acc/Inbox/cur/"\
  53. "$HOME/.local/share/mail/$acc/inbox/cur/"\
  54. -type f -newer "${XDG_CONFIG_HOME:-$HOME/.config}/mutt/.mailsynclastrun" 2> /dev/null)
  55. newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l)
  56. case 1 in
  57. $((newcount > 0)) ) notify "$acc" "$newcount" ;;
  58. esac
  59. }
  60. # Sync accounts passed as argument or all.
  61. if [ "$#" -eq "0" ]; then
  62. accounts="$(awk '/^Channel/ {print $2}' "$MBSYNCRC")"
  63. else
  64. for arg in "$@"; do
  65. [ "${arg%${arg#?}}" = '-' ] && opts="${opts:+${opts} }${arg}" && shift 1
  66. done
  67. accounts=$*
  68. fi
  69. # Parallelize multiple accounts
  70. for account in $accounts; do
  71. syncandnotify &
  72. done
  73. wait
  74. notmuch new 2>/dev/null
  75. #Create a touch file that indicates the time of the last run of mailsync
  76. touch "${XDG_CONFIG_HOME:-$HOME/.config}/mutt/.mailsynclastrun"