From 49570c8dd03448240897b37b68567352b790f16f Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 8 Oct 2023 12:09:20 -0400 Subject: convert to stow --- notmuch/.cache/notmuch/hooks/post-new | 4 ++++ notmuch/.config/notmuch/default/config | 17 +++++++++++++++++ notmuch/Makefile | 4 ++++ notmuch/hooks/post-new | 4 ---- 4 files changed, 25 insertions(+), 4 deletions(-) create mode 100755 notmuch/.cache/notmuch/hooks/post-new create mode 100644 notmuch/.config/notmuch/default/config create mode 100644 notmuch/Makefile delete mode 100755 notmuch/hooks/post-new (limited to 'notmuch') diff --git a/notmuch/.cache/notmuch/hooks/post-new b/notmuch/.cache/notmuch/hooks/post-new new file mode 100755 index 0000000..8809f91 --- /dev/null +++ b/notmuch/.cache/notmuch/hooks/post-new @@ -0,0 +1,4 @@ +#!/bin/sh + +notmuch tag +spam -- folder:spam -tag:spam +notmuch tag -spam -- -folder:spam tag:spam diff --git a/notmuch/.config/notmuch/default/config b/notmuch/.config/notmuch/default/config new file mode 100644 index 0000000..35b5547 --- /dev/null +++ b/notmuch/.config/notmuch/default/config @@ -0,0 +1,17 @@ +[database] +path=/home/doy/.cache/notmuch +mail_root=/home/doy/Maildir + +[user] +name=Jesse Luehrs +primary_email=doy@tozt.net +other_email=doy@stripe.com;jesse.luehrs@iinteractive.com;doy@cpan.org; + +[new] +ignore=spam;.uidvalidity; + +[maildir] +synchronize_flags=true + +[search] +exclude_tags=spam; diff --git a/notmuch/Makefile b/notmuch/Makefile new file mode 100644 index 0000000..d1f30eb --- /dev/null +++ b/notmuch/Makefile @@ -0,0 +1,4 @@ +include ../Makefile.include + +install: + @mkdir -p $(HOME)/.cache/notmuch diff --git a/notmuch/hooks/post-new b/notmuch/hooks/post-new deleted file mode 100755 index 8809f91..0000000 --- a/notmuch/hooks/post-new +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -notmuch tag +spam -- folder:spam -tag:spam -notmuch tag -spam -- -folder:spam tag:spam -- cgit v1.2.3-54-g00ecf