diff options
author | Jelle Licht <jlicht@fsfe.org> | 2023-06-10 11:58:54 +0200 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2023-06-10 19:08:02 -0400 |
commit | 0eca53e702ac209efacb86f64fc86ea54286ef35 (patch) | |
tree | da553a932ea5c5e9d8f80ac4f51b1cd7a1d190d0 /piem.el | |
parent | adb5b4a858c0f72fc807a4a94417361d0ba14f92 (diff) | |
download | piem-0eca53e702ac209efacb86f64fc86ea54286ef35.tar.gz |
piem: Add :gnu-package keyword to piem-inboxes
With the `:gnu-package` keyword, users can configure a string to match
against the X-GNU-PR-PACKAGE email header for the GNU Bug Tracker.
Message-ID: <20230610095858.26982-2-jlicht@fsfe.org>
Diffstat (limited to 'piem.el')
-rw-r--r-- | piem.el | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -83,6 +83,8 @@ list that supports the following properties: A URL hosting HTTPS archives. :maildir A Maildir directory to inject messages into. + :gnu-package + A GNU Bug Tracker label to match with for the inbox. Here's an example for the public-inbox project itself: @@ -393,7 +395,9 @@ files." (rx string-start "publicinbox." (group (one-or-more not-newline)) "." (group - (or "address" "coderepo" "listid" "maildir" "url")) + (or "address" "coderepo" + "listid" "maildir" + "url" "gnu-package")) string-end) key) (let* ((inbox-name (match-string 1 key)) |