summaryrefslogtreecommitdiff
path: root/debian/patches/001_path-to-rrd.diff
blob: 442ea58ab6d966f4ab58e97258bc9c13548f7337 (plain)
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
Description: Set path to rrd files to /var/lib/mailgraph/
Forwarded: not-needed

--- a/mailgraph.cgi
+++ b/mailgraph.cgi
@@ -16,9 +16,9 @@
 my $points_per_sample = 3;
 my $ypoints = 160;
 my $ypoints_err = 96;
-my $rrd = 'mailgraph.rrd'; # path to where the RRD database is
-my $rrd_virus = 'mailgraph_virus.rrd'; # path to where the Virus RRD database is
-my $tmp_dir = '/tmp/mailgraph'; # temporary directory where to store the images
+my $rrd = '/var/lib/mailgraph/mailgraph.rrd'; # path to where the RRD database is
+my $rrd_virus = '/var/lib/mailgraph/mailgraph_virus.rrd'; # path to where the Virus RRD database is
+my $tmp_dir = '/var/lib/mailgraph/'; # temporary directory where to store the images
 
 my @graphs = (
 	{ title => 'Last Day',   seconds => 3600*24,        },
--- a/mailgraph.pl
+++ b/mailgraph.pl
@@ -377,8 +377,8 @@
 
 # global variables
 my $logfile;
-my $rrd = "mailgraph.rrd";
-my $rrd_virus = "mailgraph_virus.rrd";
+my $rrd = "/var/lib/mailgraph/mailgraph.rrd";
+my $rrd_virus = "/var/lib/mailgraph/mailgraph_virus.rrd";
 my $year;
 my $this_minute;
 my %sum = ( sent => 0, received => 0, bounced => 0, rejected => 0, virus => 0, spam => 0 );