diff options
author | jkh <jkh@FreeBSD.org> | 1994-09-28 12:25:28 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-09-28 12:25:28 +0000 |
commit | 268ba1f5835fdefc6b0db7e0c11084c0d321fe00 (patch) | |
tree | 295033a69f8ebf730027510fd1f3fed432894341 /CVSROOT/log_accum.pl | |
parent | 55107cd48be7f70074a40dcccafb8f78f3c60ca5 (diff) | |
download | FreeBSD-ports-268ba1f5835fdefc6b0db7e0c11084c0d321fe00.zip FreeBSD-ports-268ba1f5835fdefc6b0db7e0c11084c0d321fe00.tar.gz |
Add mkavail script to make a mailing list file out of the avail file
automagically each and any time it's changed. Change log_accum.pl
to send to the new cvs-committers mailing list that uses this
file. This should cut down on the size of our monster cvs mail
headers considerably! :-)
Many thanks to Gary Clark II for these changes.
Submitted by: gclarkii
Diffstat (limited to 'CVSROOT/log_accum.pl')
-rwxr-xr-x | CVSROOT/log_accum.pl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index 1ad3aa8..1e5dcc2 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -252,10 +252,12 @@ sub do_avail_file { sub mail_notification { local(@text) = @_; local($names); - + local($mailing_lists); + $commiters = "CVS-commiters"; print "Mailing commit message...\n"; dbmopen(MAILFILE, "$MAIL_FILE.$id", 0666); - $names = join(" ", keys %MAILFILE) . " $mlist"; + $mailing_lists = join(' ', $mlist, $commiters); + $names = join(" ", keys %MAILFILE) . " $mailing_lists"; $names =~ s,\n,,; dbmclose(MAILFILE); @@ -308,7 +310,7 @@ if ($ARGV[0] =~ /New directory/) { exit 0; } -&do_avail_file($dir); +#&do_avail_file($dir); # # Iterate over the body of the message collecting information. |