Skip to content

Commit

Permalink
Merge branch 'nz/send-email-headers-are-case-insensitive'
Browse files Browse the repository at this point in the history
When user spells "cc:" in lowercase in the fake "header" in the
trailer part, send-email failed to pick up the addresses from
there. As e-mail headers field names are case insensitive, this
script should follow suit and treat "cc:" and "Cc:" the same way.

* nz/send-email-headers-are-case-insensitive:
  git-send-email: treat field names as case-insensitively
  • Loading branch information
Junio C Hamano committed Jan 14, 2013
2 parents 94702dd + 6310071 commit 94383a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions git-send-email.perl
Original file line number Diff line number Diff line change
Expand Up @@ -1285,25 +1285,25 @@ sub send_message {
}

if (defined $input_format && $input_format eq 'mbox') {
if (/^Subject:\s+(.*)$/) {
if (/^Subject:\s+(.*)$/i) {
$subject = $1;
}
elsif (/^From:\s+(.*)$/) {
elsif (/^From:\s+(.*)$/i) {
($author, $author_encoding) = unquote_rfc2047($1);
next if $suppress_cc{'author'};
next if $suppress_cc{'self'} and $author eq $sender;
printf("(mbox) Adding cc: %s from line '%s'\n",
$1, $_) unless $quiet;
push @cc, $1;
}
elsif (/^To:\s+(.*)$/) {
elsif (/^To:\s+(.*)$/i) {
foreach my $addr (parse_address_line($1)) {
printf("(mbox) Adding to: %s from line '%s'\n",
$addr, $_) unless $quiet;
push @to, $addr;
}
}
elsif (/^Cc:\s+(.*)$/) {
elsif (/^Cc:\s+(.*)$/i) {
foreach my $addr (parse_address_line($1)) {
if (unquote_rfc2047($addr) eq $sender) {
next if ($suppress_cc{'self'});
Expand All @@ -1325,7 +1325,7 @@ sub send_message {
elsif (/^Message-Id: (.*)/i) {
$message_id = $1;
}
elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
elsif (!/^Date:\s/i && /^[-A-Za-z]+:\s+\S/) {
push @xh, $_;
}

Expand Down

0 comments on commit 94383a8

Please sign in to comment.