diff options
author | peter <peter@FreeBSD.org> | 2001-02-04 03:59:14 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-02-04 03:59:14 +0000 |
commit | 8820b911140e3796434be098e9228568063e0b0a (patch) | |
tree | f1e9bc2ea991ceecaa1402b98b221a460ac6e915 /CVSROOT | |
parent | c7b772a085b1f0c0f491217a23b1831be8c24667 (diff) | |
download | FreeBSD-ports-8820b911140e3796434be098e9228568063e0b0a.zip FreeBSD-ports-8820b911140e3796434be098e9228568063e0b0a.tar.gz |
Argh! Repeat after me:
NEVER NEVER list cvs-committers@freebsd.org in these scripts by default!
At least, not without checking the hostname of the machine first!
Pointy-hat to: joe
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/log_accum.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index 7e79886..977a46c 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -45,8 +45,8 @@ my $DEBUG = 0; my $MAILCMD = "/usr/local/bin/mailsend -H"; -# Email addresses of recipients of commit mail. -my $MAILADDRS = 'cvs-committers@FreeBSD.org cvs-all@FreeBSD.org'; +# Email addresses of recipients of commit mail. (might be overridden below) +my $MAILADDRS = "nobody"; # Extra banner to add to top of commit messages. @@ -67,6 +67,7 @@ my $FILE_PREFIX = "#cvs.files"; # Remember to comment out if using for other purposes. #------------------------------------------------------- if (hostname() =~ /^(freefall|internat)\.freebsd\.org$/i) { + $MAILADDRS='cvs-committers@FreeBSD.org cvs-all@FreeBSD.org'; if ($1 =~ /freefall/i) { $meister = 'peter@FreeBSD.org'; } else { |