summary refs log tree commit diff
path: root/atom.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-14 10:56:15 -0400
committerJune McEnroe <june@causal.agency>2020-04-14 10:56:15 -0400
commitd33ff8191a032835c7d148c509f4555510cd4944 (patch)
treef91e5c25edc3d6e6d1d5e66a47534b8bacd1f35c /atom.c
parentFetch .TEXT of single-part nested messages (diff)
downloadbubger-d33ff8191a032835c7d148c509f4555510cd4944.tar.gz
bubger-d33ff8191a032835c7d148c509f4555510cd4944.zip
Use mid: URLs for Atom IDs
Diffstat (limited to '')
-rw-r--r--atom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/atom.c b/atom.c
index 1ed940a..5f7e3c7 100644
--- a/atom.c
+++ b/atom.c
@@ -29,7 +29,7 @@ static char *atomID(const struct Envelope *envelope) {
 		{ "messageID", envelope->messageID },
 		{0},
 	};
-	return templateURL("mailto:?Message-Id=[messageID]", vars);
+	return templateURL("mid:[messageID]", vars);
 }
 
 static int atomAuthor(FILE *file, struct Address addr) {
2020-02-11Move base64 out of chat.hJune McEnroe 2020-02-11Move XDG_SUBDIR out of chat.hJune McEnroe 2020-02-11Fix whois idle unit calculationJune McEnroe 2020-02-11Cast towupper to wchar_tJune McEnroe 2020-02-11Cast set but unused variables to voidJune McEnroe 2020-02-11Declare strlcatJune McEnroe 2020-02-11Check if VDSUSP existsJune McEnroe 2020-02-11Fix completeReplace iterationJune McEnroe 2020-02-11Use pkg(8) to configure on FreeBSDJune McEnroe 2020-02-11Remove legacy codeJune McEnroe 2020-02-11Add INSTALLING section to READMEJune McEnroe