summaryrefslogtreecommitdiff
path: root/debian/patches/001_path-to-rrd.diff
diff options
context:
space:
mode:
authorJulien Valroff <julien@kirya.net>2011-04-16 16:47:41 +0200
committerJulien Valroff <julien@kirya.net>2011-04-16 16:47:41 +0200
commitd43e203266b3d61dac1499351ec20dc57c1728b2 (patch)
treed0ed723b249d1ccb0df2c8b1ea0009d1e7390116 /debian/patches/001_path-to-rrd.diff
parent1d2747f5ec6d056b394335caf5e53598635fbec1 (diff)
parent7dd4f231f394157a6ebd1504808e86dc335f6841 (diff)
Merge branch 'master' into squeeze-backportsdebian/1.14-9_bpo60+1
Conflicts: debian/changelog
Diffstat (limited to 'debian/patches/001_path-to-rrd.diff')
-rw-r--r--debian/patches/001_path-to-rrd.diff31
1 files changed, 0 insertions, 31 deletions
diff --git a/debian/patches/001_path-to-rrd.diff b/debian/patches/001_path-to-rrd.diff
deleted file mode 100644
index 442ea58..0000000
--- a/debian/patches/001_path-to-rrd.diff
+++ /dev/null
@@ -1,31 +0,0 @@
-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 );