dotfiles/notmuch/.config/notmuch/default/hooks/pre-new

14 lines
268 B
Text
Raw Normal View History

#!/usr/bin/env sh
# # -*- mode:scheme; -*-
IFS=" "
exec scsh -s "$0" "$@"
!#
2022-05-25 10:47:20 +02:00
(define deleted
(run/sexp (notmuch search --output=files --format=sexp tag:deleted)))
(if (> (length deleted) 0)
(map (lambda (mail) (run (rm -v ,mail))) deleted))
(run (mbsync -a))