public inbox for tools@linux.kernel.org
 help / color / mirror / Atom feed
* [PATCH] add sashiko URLs
@ 2026-04-16 11:21 Mike Rapoport
  0 siblings, 0 replies; only message in thread
From: Mike Rapoport @ 2026-04-16 11:21 UTC (permalink / raw)
  To: Dan Rue; +Cc: Konstantin Ryabitsev, tools, Mike Rapoport

sashiko is gaining traction and it's easy to add its URLs along with
lore ones.

Signed-off-by: Mike Rapoport <rppt@kernel.org>
---
 lorifier.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lorifier.py b/lorifier.py
index be7294b..96529bd 100755
--- a/lorifier.py
+++ b/lorifier.py
@@ -25,6 +25,7 @@ import sys
 from email.utils import mktime_tz, parsedate_tz, formatdate
 
 LORE_MASK = "https://lore.kernel.org/all/%s"
+SASHIKO_MASK = "https://sashiko.dev/#/message/%s"
 
 
 class muttemail:
@@ -65,7 +66,9 @@ class muttemail:
             return
 
         lore_url = LORE_MASK % str(message_id).strip("<>")
+        sashiko_url = SASHIKO_MASK % str(message_id).strip("<>")
         self.message.add_header("X-URI", lore_url)
+        self.message.add_header("X-URI", sashiko_url)
 
 
 if __name__ == "__main__":
-- 
2.51.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-04-16 11:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-16 11:21 [PATCH] add sashiko URLs Mike Rapoport

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox