From: Greg Kroah-Hartman Date: Thu, 13 Dec 2007 04:56:06 +0000 (-0800) Subject: add message id support to makemail script X-Git-Tag: v2.6.23.10~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b326741b1c0896c11dd884def5baac9d7b9505bb;p=thirdparty%2Fkernel%2Fstable-queue.git add message id support to makemail script --- diff --git a/scripts/makemail b/scripts/makemail index a64c75676e4..2dddb36a56a 100755 --- a/scripts/makemail +++ b/scripts/makemail @@ -24,7 +24,8 @@ GetOptions(\%options, "cc=s", "subject=s", "date=s", - "reply_to=s" + "reply_to=s", + "message_id=s" ); if (defined($options{"subject"})) { @@ -45,6 +46,9 @@ if (defined($options{"date"})) { if (defined($options{"reply_to"})) { print("In-Reply-To: <" . $options{"reply_to"} . ">\n"); } +if (defined($options{"message_id"})) { + print("Message-ID: <" . $options{"message_id"} . ">\n"); +} print("\n");