Browse Source

Add option to get notifications for non-standard mailboxes

pull/731/head
sdoering01 3 years ago
parent
commit
05b651d081
No known key found for this signature in database GPG Key ID: 8C842169EB0F9FFE
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      bin/mailsync

+ 2
- 1
bin/mailsync View File

@@ -57,7 +57,8 @@ esac
syncandnotify() { syncandnotify() {
acc="$(echo "$account" | sed "s/.*\///")" acc="$(echo "$account" | sed "s/.*\///")"
if [ -z "$opts" ]; then mbsync "$acc"; else mbsync "$opts" "$acc"; fi if [ -z "$opts" ]; then mbsync "$acc"; else mbsync "$opts" "$acc"; fi
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 "${XDG_CONFIG_HOME:-$HOME/.config}/mutt/.mailsynclastrun" 2> /dev/null)
boxes="INBOX|Inbox|inbox$(sed -E 's/^(.+)/\|\1/' "${XDG_CONFIG_HOME:-$HOME/.config}/mutt/notification_inboxes" 2> /dev/null | tr -d '\n')"
new=$(find "$HOME/.local/share/mail/$acc" -regextype posix-egrep -regex ".*($boxes)/new.*" -type f -newer "${XDG_CONFIG_HOME:-$HOME/.config}/mutt/.mailsynclastrun" 2> /dev/null)
newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l) newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l)
case 1 in case 1 in
$((newcount > 5)) ) notify "$acc" "$newcount" ;; $((newcount > 5)) ) notify "$acc" "$newcount" ;;


Loading…
Cancel
Save