From: "Du, Changbin" <changbin.du@xxxxxxxxx> Some username in the email address may include a ','. In this case, we need quoting the username field so it will not be parsed as two single addresses by Mail::Address->parse(). For example, my eamil address "Du, Changbin <changbin.du@xxxxxxxxx>" can be parsed as two addresses "Du" and "Changbin <changbin.du@xxxxxxxxx>" if username is not quoted. ("Du, Changbin" is a legal format of signature in Chinese) The sanitized address can be used because quote is added automactically. Signed-off-by: Du, Changbin <changbin.du@xxxxxxxxx> --- git-send-email.perl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-send-email.perl b/git-send-email.perl index 6958785..6ec189e 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -1554,9 +1554,9 @@ foreach my $t (@files) { next if $suppress_cc{'sob'} and $what =~ /Signed-off-by/i; next if $suppress_cc{'bodycc'} and $what =~ /Cc/i; } - push @cc, $c; + push @cc, $sc; printf("(body) Adding cc: %s from line '%s'\n", - $c, $_) unless $quiet; + $sc, $_) unless $quiet; } } close $fh; -- 2.7.4