summaryrefslogtreecommitdiff
path: root/git-send-email.perl
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-10-23 07:46:37 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-10-23 08:12:04 (GMT)
commit1d6a003a42b3c23ad7883b0bbe6a034728e51836 (patch)
treeb9f93bead6925426430cae83bbd20e6bcca619e3 /git-send-email.perl
parent178e015c0543b581a40adbf4822f44fa592ff68b (diff)
downloadgit-1d6a003a42b3c23ad7883b0bbe6a034728e51836.zip
git-1d6a003a42b3c23ad7883b0bbe6a034728e51836.tar.gz
git-1d6a003a42b3c23ad7883b0bbe6a034728e51836.tar.bz2
git-send-email: do not pass custom Date: header
We already generate a Date: header based on when the patch was emailed. git-format-patch includes the Date: header of the patch. Having two Date: headers is just confusing, so we just use the current Date: Often the mailed patches in a patch series are created over a series of several hours or days, so the Date: header from the original commit is incorrect for email, and often far off enough for spam filters to complain. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-xgit-send-email.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl
index 1c6d2cc..c42dc3b 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -514,7 +514,7 @@ foreach my $t (@files) {
$2, $_) unless $quiet;
push @cc, $2;
}
- elsif (/^[-A-Za-z]+:\s+\S/) {
+ elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
push @xh, $_;
}