git-send-email.perl: Add angle brackets to In-Reply-To if necessary

Although message-id by defintion should have surrounding angle
brackets, there is no point forcing people to type them in.

Signed-off-by: David Kastrup <dak@gnu.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
David Kastrup 2007-09-12 07:53:45 +02:00 committed by Junio C Hamano
parent 060fe57184
commit 3803bceae8
1 changed files with 2 additions and 1 deletions

View File

@ -317,7 +317,8 @@ if ($thread && !defined $initial_reply_to && $prompting) {
} while (!defined $_);

$initial_reply_to = $_;
$initial_reply_to =~ s/(^\s+|\s+$)//g;
$initial_reply_to =~ s/^\s+<?/</;
$initial_reply_to =~ s/>?\s+$/>/;
}

if (!$smtp_server) {