#!/bin/sh # # commands/hooks to run before `notmuch new` # alias nmsearch="$(command -v notmuch) search --exclude=false --output=files -- not folder:queued and" # do the moving things ~/.config/notmuch/hooks/move-mail # remove files tagged with 'rm', a tag i use to actually delete emails for f in $(nmsearch --output=files -- tag:rm); do [ -f "$f" ] && echo rm -i "$f"; done mbsync -c "${XDG_CONFIG_HOME:-${HOME}/.config}/isync/mbsyncrc" -a