File:  [Local Repository] / processmail / reminder.pl
Revision 3.1: download - view: text, annotated - select for diffs - revision graph
Mon Mar 24 16:01:47 2008 UTC (16 years, 2 months ago) by boris
Branches: MAIN
CVS tags: HEAD
New version from Lev

#!/usr/local/bin/perl
#
#$Id: reminder.pl,v 3.1 2008/03/24 16:01:47 boris Exp $
#
# Читаем файл и шлем e-mail
#
#
# Исходные файлы и параметры
#

    use Getopt::Std; 

$usage = 'reminder.pl $Revision: 3.1 $, $Date: 2008/03/24 16:01:47 $'. "\n".
"Usage: reminder.pl [-d] [-r round]  [-o results] \n";

require 'parameters.pl';
require 'subroutines.pl';

die $usage unless getopts('r:o:d');

$DEBUG=$opt_d;

my %teams;

#
# Читаем ответы команд
#
$round=0;
if ($opt_r)
{
    $round=$opt_r;
    foreach my $file ( @{$FILES[$opt_r]} ) {
	open (INFILE, $file);
	readmail(\%teams);
	close (INFILE);
    }
}
else
{
    *INFILE=*STDIN;
}
readmail(\%teams);
close(INFILE);

#
# Пишем мейл
#
if ($opt_o)
{ 
    die "Cannot open $opt_o\n" unless open(OUTFILE,">$opt_o");
}
else
{
    open(OUTFILE,"|/usr/lib/sendmail -oi -t");
}
select OUTFILE;
&printheader;
foreach $team (keys %teams)
{
    my $num=$teams{$team}->{'numletters'};
    print  "$team [$num]\n";
}

&printfooter;

#
# На всякий случай проверяем на наличие команд с дублирующимися номерами.
#
check_dup_numbers(\%teams);

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>