This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 3dbdf19f Extract In-Reply-To
3dbdf19f is described below
commit 3dbdf19fa6042dd672c710ea89b99b9cc776c8cc
Author: Sebb <[email protected]>
AuthorDate: Sun Mar 17 13:14:10 2024 +0000
Extract In-Reply-To
---
tools/parsemail.rb | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/parsemail.rb b/tools/parsemail.rb
index 116b3c2f..709ce35a 100755
--- a/tools/parsemail.rb
+++ b/tools/parsemail.rb
@@ -81,6 +81,7 @@ module ParseMail
MessageId: mail.message_id, # could be nil
EnvelopeFrom: mail.envelope_from,
EnvelopeDate: mail.envelope_date.to_s, # effectively the delivery
date to the mailing list
+ InReplyTo: mail["In-Reply-To"]&.decoded, # will be nil if not present
}
data[name] = entry
end