From: Greg KH Date: Fri, 13 Jul 2007 04:17:49 +0000 (-0700) Subject: make git-send-email.perl handle email addresses with no names when Email::Valid is... X-Git-Tag: v1.5.3-rc2~22 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b06c6bc831cbb9e9eb82fd3ffd5a2b674cd940d0;p=git.git make git-send-email.perl handle email addresses with no names when Email::Valid is present When using git-send-email.perl on a changeset that has: Cc: in the body of the description, and the Email::Valid perl module is installed on the system, the email address will be deemed "invalid" for some reason (Email::Valid isn't smart enough to handle this?) and complain and not send the address the email. Signed-off-by: Greg Kroah-Hartman Signed-off-by: Junio C Hamano --- diff --git a/git-send-email.perl b/git-send-email.perl index 89f7c36ee..a847d5ed5 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -410,6 +410,7 @@ sub extract_valid_address { return $address if ($address =~ /^($local_part_regexp)$/); if ($have_email_valid) { + $address =~ s/^<(.*)>$/$1/; return scalar Email::Valid->address($address); } else { # less robust/correct than the monster regexp in Email::Valid,