8b34eced1e2ac52f273c98e80faba0840430e6fd
chmalee
  Mon Mar 1 10:03:55 2021 -0800
Change Brianlee to Lou in code review email

diff --git src/utils/qa/weeklybld/sendLogEmail.pl src/utils/qa/weeklybld/sendLogEmail.pl
index 6d37c23..ea91360 100755
--- src/utils/qa/weeklybld/sendLogEmail.pl
+++ src/utils/qa/weeklybld/sendLogEmail.pl
@@ -1,31 +1,31 @@
 #!/usr/bin/env perl
 
 use strict;
 use warnings;
 
 my $argc = scalar(@ARGV);
 if ($argc != 2) {
   printf STDERR "usage: sendLogEmail.pl \$LASTNN \$BRANCHNN\n";
   exit 255;
 }
 
 my $lastNN = shift;
 my $branchNN = shift;
 
-my $buildMeisterEmail = $ENV{'BUILDMEISTEREMAIL'} . ',azweig@ucsc.edu,brianlee@soe.ucsc.edu';
-my $returnEmail = ' brianlee@soe.ucsc.edu';
+my $buildMeisterEmail = $ENV{'BUILDMEISTEREMAIL'} . ',azweig@ucsc.edu,lrnassar@ucsc.edu';
+my $returnEmail = ' lrnassar@ucsc.edu';
 
 my @victims;
 my %victimEmail;
 
 open (FH, "git log v${lastNN}_base..v${branchNN}_base --name-status | grep Author | sort | uniq|") or die "can not git log v${lastNN}_base..v${branchNN}_base --name-status";
 while (my $line = <FH>) {
   chomp $line;
   if ($line =~ m/^Author:/) {
     $line =~ s/Author: //;
     my @b = split('\s+', $line);
     my $sizeB = scalar(@b);
     my $email = $b[$sizeB-1];
     $email =~ s/<//;
     $email =~ s/@.*//;
     if (!exists($victimEmail{$email})) {
@@ -41,22 +41,22 @@
 printf FH "%s\n", $victimList;
 close (FH);
 foreach my $victim (sort keys %victimEmail) {
   my $logData = "";
   open (FH, "git log --author=${victim} v${lastNN}_base..v${branchNN}_base --pretty=oneline|") or die "can not git log --author=$victim";
   while (my $line = <FH>) {
      chomp $line;
      $logData .= $line;
   }
   close (FH);
   if (length($logData) > 1) {
        my $toAddr = $victimEmail{$victim};
        printf STDERR "# sending email to $toAddr\n";
        open (SH, "| /usr/sbin/sendmail -t -oi") or die "can not run sendmail";
        printf SH "To: %s\n", $toAddr;
-       printf SH "From: \"Brian Lee\" <brianlee\@soe.ucsc.edu>\n";
+       printf SH "From: \"Lou Nassar\" <lrnassar\@ucsc.edu>\n";
        printf SH "Subject: Code summaries are due for %s\n", $victim;
-       printf SH "Cc: \"Brian Lee\" <brianlee\@soe.ucsc.edu>\n";
+       printf SH "Cc: \"Lou Nassar\" <lrnassar\@ucsc.edu>\n";
        printf SH "\n";
        print SH `./summaryEmail.sh $victim`;
   }
 }