summaryrefslogtreecommitdiff
path: root/debian/patches/101_mailgraph.pl.diff
diff options
context:
space:
mode:
authorJulien Valroff <julien@kirya.net>2010-01-04 20:32:20 +0100
committerJulien Valroff <julien@kirya.net>2010-01-04 20:32:20 +0100
commit87e43e9a32727789473272681ee19426ad3a6feb (patch)
tree0b8dfd5fa4f9f173c02cb61c03d4b1e8ad5a442b /debian/patches/101_mailgraph.pl.diff
parenta3b3095749e8451a2acd073ca181789b8dba3925 (diff)
Switched from dpatch to quilt
Diffstat (limited to 'debian/patches/101_mailgraph.pl.diff')
-rw-r--r--debian/patches/101_mailgraph.pl.diff30
1 files changed, 0 insertions, 30 deletions
diff --git a/debian/patches/101_mailgraph.pl.diff b/debian/patches/101_mailgraph.pl.diff
deleted file mode 100644
index bbfff29..0000000
--- a/debian/patches/101_mailgraph.pl.diff
+++ /dev/null
@@ -1,30 +0,0 @@
-#! /bin/sh -e
-if [ $# -ne 1 ]; then
- echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
- exit 1
-fi
-case "$1" in
- -patch) patch -f --no-backup-if-mismatch -p1 < $0;;
- -unpatch) patch -f --no-backup-if-mismatch -R -p1 < $0;;
- *)
- echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
- exit 1;;
-esac
-
-exit 0
-
-@DPATCH@
-diff -Nur mailgraph-1.10.orig/mailgraph.pl mailgraph-1.10/mailgraph.pl
---- mailgraph-1.10.orig/mailgraph.pl 2004-10-25 19:27:09.000000000 +0000
-+++ mailgraph-1.10/mailgraph.pl 2004-11-27 17:51:41.000000000 +0000
-@@ -304,8 +304,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 );