diff options
author | joe <joe@FreeBSD.org> | 2001-10-26 19:25:00 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-10-26 19:25:00 +0800 |
commit | fe334eea46877e6677797db465f5470fab476c56 (patch) | |
tree | cfc374742f063ac17473499870a4e12de7753e29 /CVSROOT/log_accum.pl | |
parent | 1fdcbb72df6f0748f26efdcaf6cf0765b091131e (diff) | |
download | freebsd-ports-gnome-fe334eea46877e6677797db465f5470fab476c56.tar.gz freebsd-ports-gnome-fe334eea46877e6677797db465f5470fab476c56.tar.zst freebsd-ports-gnome-fe334eea46877e6677797db465f5470fab476c56.zip |
We don't fetch the list of email addresses from the temporary file
that used to be used. Move the bit of code that gets them back
into the bit-rotted commented out code block.
Diffstat (limited to 'CVSROOT/log_accum.pl')
-rwxr-xr-x | CVSROOT/log_accum.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index 7b675b47956a..c489c7dec125 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -431,6 +431,7 @@ sub mail_notification { # This is turned off since the To: lines go overboard. # Also it has bit-rotted since, and can't just be switched on again. # - but keep it for the time being in case we do something like cvs-stable +# my @mailaddrs = &read_logfile($MAIL_FILE); # print(MAIL 'To: cvs-committers' . $dom . ", cvs-all" . $dom); # foreach $line (@mailaddrs) { # next if ($unique{$line}); @@ -497,7 +498,6 @@ sub mail_notification { } # Send the email. - my @mailaddrs = &read_logfile($MAIL_FILE); open MAIL, "| $cfg::MAILCMD $cfg::MAILADDRS" or die "Please check $cfg::MAILCMD."; print MAIL map { "$_\n" } @email; |