From c54ad85d10c1149361bf2a8120ce8ae38bf7847f Mon Sep 17 00:00:00 2001 From: "Eric Wong (Contractor, The Linux Foundation)" Date: Thu, 15 Feb 2018 09:27:55 +0000 Subject: import: quiet down warnings from bogus From: lines There's a lot of crap in archives and git-fast-import accepts empty names and email addresses for authors just fine. --- lib/PublicInbox/Import.pm | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) (limited to 'lib/PublicInbox/Import.pm') diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm index 845fbb69..f8d10037 100644 --- a/lib/PublicInbox/Import.pm +++ b/lib/PublicInbox/Import.pm @@ -246,11 +246,6 @@ sub add { my $from = $mime->header('From'); my ($email) = PublicInbox::Address::emails($from); my ($name) = PublicInbox::Address::names($from); - # git gets confused with: - # "'A U Thor ' via foo" - # ref: - # - $name =~ tr/<>//d; my $date_raw = parse_date($mime); my $subject = $mime->header('Subject'); @@ -297,10 +292,26 @@ sub add { print $w "reset $ref\n" or wfail; } - utf8::encode($email); - utf8::encode($name); + # quiet down wide character warnings with utf8::encode + if (defined $email) { + utf8::encode($email); + } else { + $email = ''; + warn "no email in From: $from\n"; + } + + # git gets confused with: + # "'A U Thor ' via foo" + # ref: + # + if (defined $name) { + $name =~ tr/<>//d; + utf8::encode($name); + } else { + $name = ''; + warn "no name in From: $from\n"; + } utf8::encode($subject); - # quiet down wide character warnings: print $w "commit $ref\nmark :$commit\n", "author $name <$email> $date_raw\n", "committer $self->{ident} ", now_raw(), "\n" or wfail; -- cgit v1.2.3-24-ge0c7