checkstyle9.pl: Add check for bad email

Add check for bad email. And remove check for qemu that doesn't matter.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2023-06-12 10:06:50 -06:00
parent 6f6213ec90
commit 2c0cd59345

View File

@ -1447,8 +1447,8 @@ sub process {
$is_patch = 1; $is_patch = 1;
} }
if ($line =~ /^(Author|From): .* via .*<qemu-devel\@nongnu.org>/) { if ($line =~ /^(Author|From): .*noreply.*/) {
ERROR("Author email address is mangled by the mailing list\n" . $herecurr); ERROR("Real email adress is needed\n" . $herecurr);
} }
#check the patch for a signoff: #check the patch for a signoff: