diff options
author | June McEnroe <june@causal.agency> | 2020-04-11 20:55:10 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-11 20:55:10 -0400 |
commit | 304d2e71436323a04efec51123e773c67b358bc2 (patch) | |
tree | a40e58721e7ce9833df8f8af9548427eba19746b | |
parent | Write escapeXML in the same order as escapeURL (diff) | |
download | bubger-304d2e71436323a04efec51123e773c67b358bc2.tar.gz bubger-304d2e71436323a04efec51123e773c67b358bc2.zip |
Use Message-Id in mailto Atom IDs
-rw-r--r-- | atom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/atom.c b/atom.c index 2851e3c..bf4b456 100644 --- a/atom.c +++ b/atom.c @@ -27,7 +27,7 @@ static char *atomID(const char *messageID) { { "messageID", messageID }, {0}, }; - return templateURL("mailto:?In-Reply-To=[messageID]", vars); + return templateURL("mailto:?Message-Id=[messageID]", vars); } int atomEntryHead(FILE *file, const struct Envelope *envelope) { |