Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

95 lignes
4.1 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 -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. [ -n "$MBSYNCRC" ] && alias mbsync="mbsync -c $MBSYNCRC" || MBSYNCRC="$HOME/.mbsyncrc"
  31. # Settings are different for MacOS (Darwin) systems.
  32. case "$(uname)" in
  33. Darwin)
  34. notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
  35. messageinfo() { osascript -e "display notification with title \"📧 $from\" subtitle \"$subject\"" ;}
  36. ;;
  37. *)
  38. displays="$(pgrep -a Xorg | grep -wo "[0-9]*:[0-9]\+" | sort -u)"
  39. notify() { for x in $displays; do
  40. export DISPLAY=$x
  41. notify-send --app-name="mutt-wizard" "mutt-wizard" "📬 $2 new mail(s) in \`$1\` account."
  42. done ;}
  43. messageinfo() { for x in $displays; do
  44. export DISPLAY=$x
  45. notify-send --app-name="mutt-wizard" "📧$from:" "$subject"
  46. done ;}
  47. ;;
  48. esac
  49. # Check account for new mail. Notify if there is new content.
  50. syncandnotify() {
  51. acc="$(echo "$account" | sed "s/.*\///")"
  52. if [ -z "$opts" ]; then mbsync "$acc"; else mbsync "$opts" "$acc"; fi
  53. 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 "$HOME/.config/mutt/.mailsynclastrun" 2> /dev/null)
  54. newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l)
  55. if [ "$newcount" -gt "0" ]; then
  56. notify "$acc" "$newcount" &
  57. for file in $new; do
  58. # Extract subject and sender from mail.
  59. 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:]]*$//')
  60. 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')
  61. messageinfo &
  62. done
  63. fi
  64. }
  65. # Sync accounts passed as argument or all.
  66. if [ "$#" -eq "0" ]; then
  67. accounts="$(awk '/^Channel/ {print $2}' "$MBSYNCRC")"
  68. else
  69. for arg in "$@"; do
  70. [ "${arg%${arg#?}}" = '-' ] && opts="${opts:+${opts} }${arg}" && shift 1
  71. done
  72. accounts=$*
  73. fi
  74. # Parallelize multiple accounts
  75. for account in $accounts; do
  76. syncandnotify &
  77. done
  78. wait
  79. notmuch new 2>/dev/null
  80. #Create a touch file that indicates the time of the last run of mailsync
  81. touch "$HOME/.config/mutt/.mailsynclastrun"