All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] add sashiko URLs
@ 2026-04-16 11:21 Mike Rapoport
  2026-04-16 19:17 ` Kees Cook
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages 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] 6+ messages in thread

end of thread, other threads:[~2026-04-17  8:28 UTC | newest]

Thread overview: 6+ messages (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
2026-04-16 19:17 ` Kees Cook
2026-04-16 19:26 ` Konstantin Ryabitsev
2026-04-17  6:50 ` Sudeep Holla
2026-04-17  7:38   ` Mike Rapoport
2026-04-17  8:28     ` Sudeep Holla

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.