Alexandre Julliard : patches: Preserve In-Reply-To and References headers.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Oct 6 09:15:32 CDT 2015


Module: tools
Branch: master
Commit: 3bbee01ef47bb2934c0ce81ca72e704a2693424a
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=3bbee01ef47bb2934c0ce81ca72e704a2693424a

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Oct  6 18:18:05 2015 +0900

patches: Preserve In-Reply-To and References headers.

---

 patches/filter | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/patches/filter b/patches/filter
index 53ea86e..62e2a0d 100755
--- a/patches/filter
+++ b/patches/filter
@@ -165,5 +165,7 @@ printf "From: %s\n", encode_utf8($message->Email::Simple::header("from") || "(un
 printf "Subject: %s\n", encode_utf8($message->Email::Simple::header("subject") || "(none)");
 printf "Message-Id: %s\n", $message->header("message-id");
 printf "Date: %s\n", $message->header("date");
+printf "In-Reply-To: %s\n", $message->header("in-reply-to") if $message->header("in-reply-to");
+printf "References: %s\n", $message->header("references") if $message->header("references");
 print "\n";
 print join("\n",decode_parts($message->parts)), "\n";




More information about the wine-cvs mailing list