/usr/lib/cgi-bin/queuegraph.cgi is in queuegraph 1.1.1-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | #!/usr/bin/perl -w
# queuegraph -- a postfix queue statistics rrdtool frontend
# based on mailgraph, which is
# copyright (c) 2000-2002 David Schweikert <dws@ee.ethz.ch>
# released under the GNU General Public License
use RRDs;
use POSIX qw(uname);
my $VERSION = "1.1";
my $host = (POSIX::uname())[1];
my $scriptname = 'queuegraph.cgi';
my $xpoints = 800;
my $points_per_sample = 3;
my $ypoints = 160;
my $ypoints_err = 80;
my $rrd = '/var/lib/queuegraph/queuegraph.rrd'; # path to the RRD database
my $tmp_dir = '/var/cache/queuegraph'; # tmp directory where to store the images
my $rrdtool_1_0 = ($RRDs::VERSION < 1.199908);
my @graphs = (
{ title => 'Day Graph', seconds => 3600*24, },
{ title => 'Week Graph', seconds => 3600*24*7, },
{ title => 'Month Graph', seconds => 3600*24*31, },
{ title => 'Year Graph', seconds => 3600*24*365, },
);
my %color = (
sent => '000099', # rrggbb in hex
received => '00FF00',
rejected => '999999',
bounced => '993399',
virus => 'FFFF00',
spam => 'FF0000',
);
sub graph($$$)
{
my $range = shift;
my $file = shift;
my $title = shift;
my $step = $range*$points_per_sample/$xpoints;
my $date = localtime(time);
$date =~ s|:|\\:|g unless $rrdtool_1_0;
my ($graphret,$xs,$ys) = RRDs::graph($file,
'--imgformat', 'PNG',
'--width', $xpoints,
'--height', $ypoints,
'--start', "-$range",
'--end', "-".int($range*0.01),
'--vertical-label', 'queuefiles',
'--title', $title,
'--lazy',
$rrdtool_1_0 ? () : (
'--slope-mode'
),
"DEF:active=$rrd:active:AVERAGE",
"DEF:deferred=$rrd:deferred:AVERAGE",
'LINE2:active#00ff00:Active+Incoming+Maildrop\:',
'GPRINT:active:MAX:Maximum\: %0.0lf ',
'GPRINT:active:AVERAGE:Average\: %0.0lf/min\n',
'LINE1:deferred#0000ff:Deferred\:',
'GPRINT:deferred:MAX:Maximum\: %0.0lf ',
'GPRINT:deferred:AVERAGE:Average\: %0.0lf/min\l',
'HRULE:0#000000',
'COMMENT:\n',
'COMMENT:['.$date.']\r',
);
my $ERR=RRDs::error;
die "ERROR: $ERR\n" if $ERR;
}
sub print_html()
{
print "Content-Type: text/html\n\n";
print <<HEADER;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
<TITLE>Queue Statistics for $host</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
HEADER
print "<H1>Postfix Queue Statistics for $host</H1>\n";
for my $n (0..$#graphs) {
print '<div style="background: #dddddd; width: 892px">';
print "<H2>$graphs[$n]{title}</H2>\n";
print "</div>\n";
print "<P><IMG BORDER=\"0\" SRC=\"$scriptname/queuegraph_${n}.png\" ALT=\"queuegraph\">\n";
}
print <<FOOTER;
<table border="0" width="400"><tr><td align="left">
<A href="http://www.stahl.bau.tu-bs.de/~hildeb/postfix/queuegraph">queuegraph</A> $VERSION
by <A href="http://www.stahl.bau.tu-bs.de/~hildeb/">Ralf Hildebrandt</A>,
based on <A href="http://people.ee.ethz.ch/~dws/software/mailgraph">mailgraph</A>
by <A href="http://people.ee.ethz.ch/~dws/">David Schweikert</A></td>
<td ALIGN="right">
<a HREF="http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/"><img border="0" src="http://people.ethz.ch/~oetiker/webtools/rrdtool/.pics/rrdtool.gif" alt="" width="120" height="34"></a>
</td></tr></table>
</BODY>
FOOTER
}
sub send_image($)
{
my $file = shift;
-r $file or do {
print "Content-Type: text/plain\n\nERROR: can't find $file\n";
exit 1;
};
print "Content-Type: image/png\n";
print "Content-Length: ".((stat($file))[7])."\n";
print "\n";
open(IMG, $file) or die;
my $data;
print $data while read IMG, $data, 1;
}
sub main()
{
if($ENV{PATH_INFO}) {
my $uri = $ENV{REQUEST_URI};
$uri =~ s/\/[^\/]+$//;
$uri =~ s/\//,/g;
$uri =~ s/\~/tilde,/g;
mkdir $tmp_dir, 0777 unless -d $tmp_dir;
mkdir "$tmp_dir/$uri", 0777 unless -d "$tmp_dir/$uri";
my $file = "$tmp_dir/$uri$ENV{PATH_INFO}";
if($ENV{PATH_INFO} =~ /^\/queuegraph_(\d+)\.png$/) {
graph($graphs[$1]{seconds}, $file, $graphs[$1]{title});
}
else {
print "Content-Type: text/plain\n\nERROR: unknown image $ENV{PATH_INFO}\n";
exit 1;
}
send_image($file);
}
else {
print_html;
}
}
main;
|