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.
 
 
 
 

112 lines
4.0 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 not already running in other instance
  12. pgrep mbsync >/dev/null && { echo "mbsync is already running."; exit ;}
  13. # First, we have to get the right variables for the mbsync file, the pass
  14. # archive, notmuch and the GPG home. This is done by searching common profile
  15. # files for variable assignments. This is ugly, but there are few options that
  16. # will work on the maximum number of machines.
  17. eval "$(grep -h -- \
  18. "^\s*\(export \)\?\(MBSYNCRC\|MPOPRC\|PASSWORD_STORE_DIR\|NOTMUCH_CONFIG\|GNUPGHOME\|MAILSYNC_MUTE\)=" \
  19. "$HOME/.profile" "$HOME/.bash_profile" "$HOME/.zprofile" "$HOME/.config/zsh/.zprofile" "$HOME/.zshenv" \
  20. "$HOME/.config/zsh/.zshenv" "$HOME/.bashrc" "$HOME/.zshrc" "$HOME/.config/zsh/.zshrc" \
  21. "$HOME/.pam_environment" 2>/dev/null)"
  22. export GPG_TTY="$(tty)"
  23. [ -n "$MBSYNCRC" ] && alias mbsync="mbsync -c $MBSYNCRC" || MBSYNCRC="$HOME/.mbsyncrc"
  24. [ -n "$MPOPRC" ] || MPOPRC="$HOME/.config/mpop/config"
  25. lastrun="${XDG_CONFIG_HOME:-$HOME/.config}/mutt/.mailsynclastrun"
  26. # Settings are different for MacOS (Darwin) systems.
  27. case "$(uname)" in
  28. Darwin)
  29. notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
  30. ;;
  31. *)
  32. case "$(readlink -f /sbin/init)" in
  33. *systemd*|*openrc*) export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus ;;
  34. esac
  35. # remember if a display server is running since `ps` doesn't always contain a display
  36. pgrepoutput="$(pgrep -ax X\(\|org\|wayland\))"
  37. displays="$(echo "$pgrepoutput" | grep -wo "[0-9]*:[0-9]\+" | sort -u)"
  38. [ -z $displays ] && [ -d /tmp/.X11-unix ] && displays=$(cd /tmp/.X11-unix && for x in X*; do echo ":${x#X}"; done)
  39. notify() { [ -n "$pgrepoutput" ] && for x in ${displays:-0:}; do
  40. export DISPLAY=$x
  41. notify-send --app-name="mutt-wizard" "New mail!" "📬 $2 new mail(s) in \`$1\` account."
  42. done ;}
  43. ;;
  44. esac
  45. # Check account for new mail. Notify if there is new content.
  46. syncandnotify() {
  47. acc="$(echo "$account" | sed "s/.*\///")"
  48. if [ "$1" = "pop" ]; then
  49. # Handle POP
  50. mpop "$acc"
  51. else
  52. # Handle IMAP
  53. if [ -z "$opts" ]; then mbsync "$acc"; else mbsync "$opts" "$acc"; fi
  54. fi
  55. new=$(find\
  56. "$HOME/.local/share/mail/$acc/"[Ii][Nn][Bb][Oo][Xx]/new/ \
  57. "$HOME/.local/share/mail/$acc/"[Ii][Nn][Bb][Oo][Xx]/cur/ \
  58. -type f -newer "$lastrun" 2> /dev/null)
  59. newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l)
  60. [ -z "$MAILSYNC_MUTE" ] && case 1 in
  61. $((newcount > 0)) ) notify "$acc" "$newcount" ;;
  62. esac
  63. }
  64. # Sync accounts passed as argument or all.
  65. if [ "$#" -gt "0" ]; then
  66. for arg in "$@"; do
  67. [ "${arg%${arg#?}}" = '-' ] && opts="${opts:+${opts} }${arg}" && shift 1
  68. done
  69. accounts=$*
  70. fi
  71. [ -z "$imap_accounts" ] && [ -r "$MBSYNCRC" ] && imap_accounts="$(awk '/^Channel/ {print $2}' "$MBSYNCRC" 2>/dev/null)"
  72. [ -z "$pop_accounts" ] && [ -r "$MPOPRC" ] && pop_accounts="$(awk '/^account/ {print $2}' "$MPOPRC" 2>/dev/null)"
  73. # Parallelize multiple accounts
  74. for account in $imap_accounts; do
  75. if [ -n "$accounts" ]; then
  76. for tmp_ac in $accounts; do
  77. [ "$tmp_ac" = "$account" ] && syncandnotify "imap" &
  78. done
  79. continue
  80. fi
  81. syncandnotify "imap" &
  82. done
  83. for account in $pop_accounts; do
  84. if [ -n "$accounts" ]; then
  85. for tmp_ac in $accounts; do
  86. [ "$tmp_ac" = "$account" ] && syncandnotify "pop" &
  87. done
  88. continue
  89. fi
  90. syncandnotify "pop" &
  91. done
  92. wait
  93. notmuch new --quiet
  94. #Create a touch file that indicates the time of the last run of mailsync
  95. touch "$lastrun"