Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

mailsync 4.2 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 -x 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/.bashrc" "$HOME/.zshrc" "$HOME/.pam_environment" 2>/dev/null)"
  22. # One alternative to this kind of command would be marking the script for
  23. # /bin/sh -l. That might cause other problems on other particular setups that
  24. # do more complicated things on login, or those people who assign environmental
  25. # variables in shell rc files.
  26. case "$(readlink -f /sbin/init)" in
  27. *systemd*) export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus ;;
  28. esac
  29. export GPG_TTY=$TTY
  30. muttconfig="${XDG_CONFIG_HOME:-$HOME/.config}/mutt"
  31. [ -n "$MBSYNCRC" ] && alias mbsync="mbsync -c $MBSYNCRC" || MBSYNCRC="$HOME/.mbsyncrc"
  32. # Settings are different for MacOS (Darwin) systems.
  33. case "$(uname)" in
  34. Darwin)
  35. notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
  36. messageinfo() { osascript -e "display notification with title \"📧 $from\" subtitle \"$subject\"" ;}
  37. ;;
  38. *)
  39. displays="$(pgrep -a Xorg | grep -wo "[0-9]*:[0-9]\+")"
  40. notify() { for x in $displays; do
  41. export DISPLAY=$x
  42. notify-send --app-name="mutt-wizard" "mutt-wizard" "📬 $2 new mail(s) in \`$1\` account."
  43. done ;}
  44. messageinfo() { for x in $displays; do
  45. export DISPLAY=$x
  46. notify-send --app-name="mutt-wizard" "📧$from:" "$subject"
  47. done ;}
  48. ;;
  49. esac
  50. # Check account for new mail. Notify if there is new content.
  51. syncandnotify() {
  52. acc="$(echo "$account" | sed "s/.*\///")"
  53. if [ -z "$opts" ]; then mbsync "$acc"; else mbsync "$opts" "$acc"; fi
  54. 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 "$muttconfig/.mailsynclastrun" 2> /dev/null)
  55. newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l)
  56. if [ "$newcount" -gt "0" ]; then
  57. notify "$acc" "$newcount" &
  58. for file in $new; do
  59. # Extract subject and sender from mail.
  60. 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:]]*$//')
  61. 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')
  62. messageinfo &
  63. done
  64. fi
  65. }
  66. # Sync accounts passed as argument or all.
  67. if [ "$#" -eq "0" ]; then
  68. accounts="$(awk '/^Channel/ {print $2}' "$MBSYNCRC")"
  69. else
  70. for arg in "$@"; do
  71. [ "${arg%${arg#?}}" = '-' ] && opts="${opts:+${opts} }${arg}" && shift 1
  72. done
  73. accounts=$*
  74. fi
  75. # Parallelize multiple accounts
  76. for account in $accounts; do
  77. syncandnotify &
  78. done
  79. wait
  80. notmuch new 2>/dev/null
  81. #Create a touch file that indicates the time of the last run of mailsync
  82. touch "$muttconfig/.mailsynclastrun"