diff options
author | peter <peter@FreeBSD.org> | 1999-02-18 07:53:35 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-02-18 07:53:35 +0000 |
commit | d94801a3650a28dbc706a28dc14181e4d63ad83a (patch) | |
tree | 88e1486979aa1a7fd2ea55c3580488d40a58ca05 /CVSROOT | |
parent | 7b61dcbcffb27cbd13079bf7020021ba5cd846a0 (diff) | |
download | FreeBSD-ports-d94801a3650a28dbc706a28dc14181e4d63ad83a.zip FreeBSD-ports-d94801a3650a28dbc706a28dc14181e4d63ad83a.tar.gz |
Use a general purpose (read: hack) tool that I've used over the years on
various things to inject the commit messages. This should give us back
the 'From: User Name <user@freebsd.org>' headers we're used to.
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/log_accum.pl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index e8647c0..ef6b3d0 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -1,6 +1,6 @@ #!/usr/local/bin/perl # -# $Id: log_accum.pl,v 1.31 1999/02/17 17:14:40 peter Exp $ +# $Id: log_accum.pl,v 1.32 1999/02/17 20:59:45 msmith Exp $ # # Perl filter to handle the log messages from the checkin of files in # a directory. This script will group the lists of files by log @@ -347,12 +347,12 @@ sub mail_notification { @mailaddrs = &read_logfile("$MAIL_FILE.$id", ""); if ($debug) { - open(MAIL, "| /usr/sbin/sendmail -odb -oem peter"); + open(MAIL, "| /usr/local/bin/mailsend -H peter"); } else { - open(MAIL, "| /usr/sbin/sendmail -odb -oem -t"); + open(MAIL, "| /usr/local/bin/mailsend -H cvs-committers cvs-all"); } - print(MAIL 'To: cvs-committers' . $dom . ", cvs-all" . $dom); +# print(MAIL 'To: cvs-committers' . $dom . ", cvs-all" . $dom); # This is turned off since the To: lines go overboard. # foreach $line (@mailaddrs) { # next if ($unique{$line}); @@ -360,7 +360,7 @@ sub mail_notification { # next if /^cvs-/; # print(MAIL ", " . $line . $dom); # } - print(MAIL "\n"); +# print(MAIL "\n"); $subject = 'Subject: cvs commit:'; @subj = &read_logfile("$SUBJ_FILE.$id", ""); @@ -388,7 +388,6 @@ sub mail_notification { if ($subject ne "") { print(MAIL $subject, "\n"); } - print (MAIL "Precedence: bulk\n"); print (MAIL "\n"); print(MAIL join("\n", @text)); |