From 979cbcd23ee6ff06f47ec83bd05ebc019c4ae0a8 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sun, 20 Apr 2025 09:37:51 -0700 Subject: [PATCH] procmail2notmuch: inlude early exit option --- procmail2notmuch/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/procmail2notmuch/src/main.rs b/procmail2notmuch/src/main.rs index ab452b8..a6f66a6 100644 --- a/procmail2notmuch/src/main.rs +++ b/procmail2notmuch/src/main.rs @@ -31,6 +31,7 @@ struct Match { #[derive(Debug, Default, Serialize, Deserialize)] struct Rule { + stop_on_match: bool, matches: Vec, tag: Option, }