--- mailgraph-1.12.orig/debian/README.Debian +++ mailgraph-1.12/debian/README.Debian @@ -0,0 +1,13 @@ +Mailgraph gathers statistics about traffic passing through a Postfix +mail server and presents them in graphical form on a web page. It does +this using the excellent RRDTOOL +(http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/). + +This Debian package installs itself, optionally, as a daemon that +will constantly gather the statistics it needs. You really need to turn +this option on for it to be of any use. The statistics themselves are +served up by a web CGI program, /usr/lib/cgi-bin/mailgraph.cgi. With any +normal Debian web server install, this should be accessible as +http://localhost/cgi-bin/mailgraph.cgi + + -- Norbert Tretkowski Thu, 25 Dec 2003 23:50:13 +0100 --- mailgraph-1.12.orig/debian/README.fetchmail +++ mailgraph-1.12/debian/README.fetchmail @@ -0,0 +1,5 @@ +Fetchmail is delivering to localhost by default. Mailgraph ignores mail to +localhost, so use Fetchmails --smtphost parameter when using Fetchmail with +Mailgraph. + + -- Norbert Tretkowski Thu, 25 Dec 2003 23:44:41 +0100 --- mailgraph-1.12.orig/debian/config +++ mailgraph-1.12/debian/config @@ -0,0 +1,8 @@ +#!/bin/sh -e +. /usr/share/debconf/confmodule +db_input medium mailgraph/start_on_boot || true +db_go +db_input medium mailgraph/mail_log || true +db_go +db_input medium mailgraph/ignore_localhost || true +db_go --- mailgraph-1.12.orig/debian/copyright +++ mailgraph-1.12/debian/copyright @@ -0,0 +1,8 @@ +This package was debianized by Norbert Tretkowski on +Mon, 4 Nov 2002 15:31:44 +0100. + +It was downloaded from http://people.ee.ethz.ch/~dws/software/mailgraph/ + +Upstream Author: David Schweikert + +Copyright: see /usr/share/common-licenses/GPL --- mailgraph-1.12.orig/debian/dirs +++ mailgraph-1.12/debian/dirs @@ -0,0 +1,2 @@ +usr/sbin +usr/lib/cgi-bin --- mailgraph-1.12.orig/debian/docs +++ mailgraph-1.12/debian/docs @@ -0,0 +1,2 @@ +README +debian/README.fetchmail --- mailgraph-1.12.orig/debian/patches/00list +++ mailgraph-1.12/debian/patches/00list @@ -0,0 +1,2 @@ +101_mailgraph.pl.diff +102_mailgraph.cgi.diff --- mailgraph-1.12.orig/debian/patches/101_mailgraph.pl.diff +++ mailgraph-1.12/debian/patches/101_mailgraph.pl.diff @@ -0,0 +1,30 @@ +#! /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 ); --- mailgraph-1.12.orig/debian/patches/102_mailgraph.cgi.diff +++ mailgraph-1.12/debian/patches/102_mailgraph.cgi.diff @@ -0,0 +1,32 @@ +#! /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.12.orig/mailgraph.cgi mailgraph-1.12/mailgraph.cgi +--- mailgraph-1.12.orig/mailgraph.cgi 2005-10-16 19:17:00.000000000 +0200 ++++ mailgraph-1.12/mailgraph.cgi 2005-11-13 13:43:32.000000000 +0100 +@@ -15,9 +15,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 => 'Day Graphs', seconds => 3600*24, }, --- mailgraph-1.12.orig/debian/po/cs.po +++ mailgraph-1.12/debian/po/cs.po @@ -0,0 +1,80 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: mailgraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2006-10-21 13:14+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Má se Mailgraph spouštět při zavádění počítače?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"Mailgraph se může spouštět při zavádění počítače jako daemon, který pak bude " +"monitorovat změny v logovacím souboru Postfixu. To je doporučeno." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "Další možností je spouštět mailgraph.pl ručně s parametrem -c." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Který logovací soubor má mailgraph používat?" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Zadejte logovací soubor, který se má použít pro vytvoření databází " +"mailgraphu. Pokud si nejste jisti, ponechte výchozí (/var/log/mail.log)." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "Počítat příchozí poštu jako odchozí?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" +"Počítá-li se příchozí pošta jako odchozí (výchozí možnost), pak je při " +"použití filtrů obsahu (např. amavis) pošta počítána vícekrát, takže obdržíte " +"chybné hodnoty. Jestliže používáte filtry obsahu, tuto možnost zamítněte." --- mailgraph-1.12.orig/debian/po/fr.po +++ mailgraph-1.12/debian/po/fr.po @@ -0,0 +1,86 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Initial translator: Jean-Christophe Champarnaud +msgid "" +msgstr "" +"Project-Id-Version: mailgraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2006-05-06 21:13+0200\n" +"Last-Translator: Thomas Huriaux \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Mailgraph doit-il tre lanc au dmarrage?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"Mailgraph peut tre lanc au dmarrage, en mode dmon. Il pourra ainsi " +"contrler les modifications dans le fichier de journalisation de Postfix. " +"Cette option est recommande." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "" +"Il est galement possible d'utiliser mailgraph.pl en le lanant vous-mme " +"avec le paramtre -c." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Fichier de journalisation utiliser par mailgraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Veuillez indiquer le fichier de journalisation que mailgraph analysera pour " +"crer sa base de donnes. Dans le doute, laissez la valeur par dfaut." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "Faut-il compter les courriels entrants comme des courriels sortants?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" +"Si vous comptez les courriels entrants avec les courriels sortants " +"(comportement par dfaut), ils seront dnombrs plus d'une fois si vous " +"utilisez des filtres de contenu comme amavis. Les valeurs seront donc " +"incorrectes. Si vous utilisez un filtre de contenu de ce type, ne choisissez " +"pas cette option." --- mailgraph-1.12.orig/debian/po/POTFILES.in +++ mailgraph-1.12/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- mailgraph-1.12.orig/debian/po/sk.po +++ mailgraph-1.12/debian/po/sk.po @@ -0,0 +1,82 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: mailgraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2006-10-20 21:03+0200\n" +"Last-Translator: Peter Mann \n" +"Language-Team: Slovak \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Má sa Mailgraph spúšťať pri štarte počítača?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"Mailgraph sa môže spúšťať pri štarte počítača ako daemon, ktorý bude " +"sledovať zmeny v logovacom súbore Postfixu. Táto možnosť sa odporúča." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "Ďalšou možnosťou je spúšťať mailgraph.pl manuálne s parametrom -c." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Ktorý logovací súbor má používať mailgraph?" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Zadajte logovací súbor, ktorý sa má použiť na vytvorenie databázy " +"mailgraphu. Ak si nie ste istí, ponechajte predvolenú hodnotu (/var/log/mail." +"log)." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "Počítať prichádzajúcu poštu ako odchádzajúcu?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" +"Ak počítate prichádzajúcu poštu ako odchádzajúcu (čo je predvolené), pošta " +"sa zaráta viackrát pri použití filtrovania obsahu (content filters), napr. " +"amavis, takže dostanete zlé hodnoty. Ak používate nejaké filtrovanie obsahu, " +"odporúča sa zamietnuť túto možnosť." --- mailgraph-1.12.orig/debian/po/pt_BR.po +++ mailgraph-1.12/debian/po/pt_BR.po @@ -0,0 +1,76 @@ +# Brazilian Portuguese Translation for mailgraph. +# Copyright (C) 2006 The mailgraph's COPYRIGHT HOLDER +# This file is distributed under the same license as the mailgraph package. +# Felipe Augusto van de Wiel (faw), +# +msgid "" +msgstr "" +"Project-Id-Version: mailgraph (20061021)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2006-10-21 12:35-0200\n" +"Last-Translator: Felipe Augusto van de Wiel (faw) \n" +"Language-Team: l10n portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Mailgraph deveria ser iniciado durante o processo de inicialização?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"Mailgraph pode ser iniciado durante o processo de inicialização como um " +"\"daemon\". A partir de então ele irá monitorar as mudanças em seus arquivos " +"de log Postfix. Isto é recomendado. " + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "" +"O outro método é executar o mailgraph.pl manualmente com o parâmetro -c." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Qual arquivo de log deve ser usado pelo mailgraph?" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Informe o arquivo de log que deve ser usado para criar os bancos de dados " +"para o mailgraph. Se estiver em dúvida, deixe o valor padrão (/var/log/mail." +"log)." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "Contar e-mails que foram recebidos como e-mails que foram enviados?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" +"Se você contar e-mails que foram recebido como e-mails que foram enviados " +"(padrão) e-mails são contados mais de uma vez se você usar filtros de " +"conteúdos como amavis, portanto você terá valores errados. Se você estiver " +"usando algum filtro de conteúdo, desabilite esta opção." --- mailgraph-1.12.orig/debian/po/templates.pot +++ mailgraph-1.12/debian/po/templates.pot @@ -0,0 +1,74 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" --- mailgraph-1.12.orig/debian/po/sv.po +++ mailgraph-1.12/debian/po/sv.po @@ -0,0 +1,76 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: mailgraph 1.11-1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2005-10-20 10:57+0200\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Ska Mailgraph startas vid systemets uppstart?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"Mailgraph kan startas som en demon vid systemets uppstart. Den kommer d att " +"vervaka din Postfix-loggfiler efter ndringar. Detta r rekommenderat." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "" +"Den andra metoden r all kalla upp mailgraph.pl manuellt med parametern -c." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Vilka loggfiler ska anvndas av mailgraph?" + +#. Type: string +#. Description +#: ../templates:2001 +#, fuzzy +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Ange den loggfil som ska anvndas fr att skapa databaser fr mailgraph. Om " +"du r osker, anvnd standardvalet." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" --- mailgraph-1.12.orig/debian/po/pt.po +++ mailgraph-1.12/debian/po/pt.po @@ -0,0 +1,73 @@ +# Portuguese translation for mailgraph +# This file is distributed under the same license as the mailgraph package. +# André Costa , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: mailgraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2006-04-15 22:49+0000\n" +"Last-Translator: André Costa \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Deve o Mailgraph ser iniciado no arranque?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"O Mailgraph pode iniciar durante o arranque como um daemon. Depois ele irá " +"monitorizar o seu registo do Postfix por alterações. Isto é recomendado." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "O outro método é chamar manualmente o mailgraph.pl com o parâmetro -c." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Qual o ficheiro de registo que deve ser usado pelo mailgraph?" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Especifique o ficheiro de registo que deve ser usado para criar a base de " +"dados para o mailgraph. Se não tiver a certeza, deixe o valor por omissão (/" +"var/log/mail.log)." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "Contar o correio a receber como correio a enviar?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" +"Se contar o correio a receber como correio a enviar (por omissão), o correio " +"é contado mais do que uma vez se usar filtros de conteúdo como o amavis, por " +"isso irá obter valores errados. Se estiver a usar filtros de conteúdo, " +"desactive esta função." --- mailgraph-1.12.orig/debian/po/de.po +++ mailgraph-1.12/debian/po/de.po @@ -0,0 +1,78 @@ +# German translation of mailgraph debconf template. +# This file is distributed under the same license as the mailgraph package. +# Copyright (C) +# Tobias Toedter , 2006. +msgid "" +msgstr "" +"Project-Id-Version: mailgraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2006-10-21 11:12+0200\n" +"Last-Translator: Tobias Toedter \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Soll Mailgraph beim Hochfahren gestartet werden?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"Mailgraph kann beim Hochfahren als Daemon gestartet werden. Das Programm " +"wird dann Ihre Postfix-Protokolldatei auf Änderungen überwachen. Dies wird " +"empfohlen." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "" +"Die andere Methode ist, mailgraph.pl mit dem Parameter -c von Hand " +"aufzurufen." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Welche Protokolldatei soll von mailgraph verwendet werden?" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Geben Sie die Protokolldatei ein, die verwendet werden soll, um die " +"Datenbanken für mailgraph zu erstellen. Falls Sie unsicher sind, belassen " +"Sie die Voreinstellung (/var/log/mail.log)." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "Soll eingehende E-Mail als abgehende E-Mail gezählt werden?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" +"Wenn Sie eingehende E-Mail als abgehende E-Mail zählen (dies ist die " +"Voreinstellung), werden E-Mails bei Verwendung von Inhaltsfiltern wie amavis " +"mehrfach gezählt. Sie erhalten dann falsche Ergebnisse. Falls Sie einen " +"Inhaltsfilter verwenden, deaktivieren Sie diese Option." --- mailgraph-1.12.orig/debian/po/it.po +++ mailgraph-1.12/debian/po/it.po @@ -0,0 +1,75 @@ +# Italian (it) translation of debconf templates for mailgraph +# Copyright (C) 2005 Software in the Public Interest +# This file is distributed under the same license as the mailgraph package. +# Luca Monducci , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: mailgraph italian debconf templates\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2006-10-21 19:01+0200\n" +"Last-Translator: Luca Monducci \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Far partire Mailgraph all'avvio?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"Mailgraph pu essere fatto partire all'avvio come demone. Poi monitora le " +"modifiche al file di log di Postfix. Questo il metodo raccomandato." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "" +"L'altro metodo richiamare manualmente mailgraph.pl con il parametro -c." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Quale file di log deve essere monitorato da mailgraph?" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Inserire il file di log che mailgraph deve usare per creare i database. Se " +"non si sicuri lasciare il valore predefinito (/var/log/mail.log)." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "Contare le mail in arrivo come mail in uscita?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" +"Se le mail in arrivo sono contate come mail in uscita (questo il " +"comportamento predefinito) le mail sono contate pi di una volta se si usano " +"dei content filter come amavis, questo comporta la lettura di valori " +"sbagliati. Se si usano dei content filter si deve disabilitare questa " +"funzione." --- mailgraph-1.12.orig/debian/po/vi.po +++ mailgraph-1.12/debian/po/vi.po @@ -0,0 +1,76 @@ +# Vietnamese translation for MailGraph. +# Copyright © 2006 Free Software Foundation, Inc. +# Clytie Siddall , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: mailgraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2006-10-22 21:20+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.6fc1\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Mailgraph có nên khởi chạy khi khởi động hệ thống không?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"Chương trình Mailgraph có khả năng khởi chạy như là trình nền vào lúc khởi " +"động hệ thống. Vậy nó sẽ theo dõi tập tin ghi lưu Postfix có thay đổi chưa. " +"Khuyên bạn bật tùy chọn này." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "" +"Phương pháp khác là gọi văn lệnh « mailgraph.pl » bằng tay với tham số « -c " +"»." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Mailgraph nên sử dụng tập tin ghi lưu nào?" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Hãy nhập tên tập tin ghi lưu nên được dùng để tạo các co sở dữ liệu cho " +"mailgraph. Nếu chưa chắc, để lại giá trị mặc định (/var/log/mail.log)." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "Đếm các thư gửi đến là thư gửi đi không?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" +"Nếu bạn đếm các thư gửi đến là thư gửi đi (mặc định), mỗi thư được đếm trên " +"hai lần nếu bạn sử dụng bộ lọc nội dung như amavis, nên bạn sẽ nhận giá trị " +"sai. Vì vậy nếu bạn sử dụng bộ lọc nội dung, hãy tắt tùy chọn này." --- mailgraph-1.12.orig/debian/po/nb.po +++ mailgraph-1.12/debian/po/nb.po @@ -0,0 +1,73 @@ +# translation of mailgraph_nb.po to Norwegian Bokml +# +# +# Bjrn Steensrud , 2006. +msgid "" +msgstr "" +"Project-Id-Version: mailgraph_nb\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-11-08 07:29+0100\n" +"PO-Revision-Date: 2006-10-29 21:53+0100\n" +"Last-Translator: Bjrn Steensrud \n" +"Language-Team: Norwegian Bokml \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should Mailgraph start on boot?" +msgstr "Skal Mailgraph startes ved oppstart?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Mailgraph can start on boot time as a daemon. Then it will monitor your " +"Postfix logfile for changes. This is recommended." +msgstr "" +"Mailgraph kan startes som en nisse ved systemoppstart. Da overvker den din " +"Postfix-loggfil etter endringer. Dette er anbefalt." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "The other method is to call mailgraph.pl by hand with the -c parameter." +msgstr "" +"Den andre metoden er kalle opp mailgraph.pl manuelt med parameteren -c." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Which logfile should be used by mailgraph?" +msgstr "Hvilken loggfil skal mailgraph bruke?" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"mailgraph. If unsure, leave default (/var/log/mail.log)." +msgstr "" +"Oppgi loggfil som skal brukes til opprette databaser for mailgraph. Er du " +"usikker, s bruk standardvalget (/var/log/mail.log)." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Count incoming mail as outgoing mail?" +msgstr "Telle innkommende e-post som utgende?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"If you count incoming mail as outgoing mail (default), mail is counted more " +"than once if you use content filters like amavis, so you'll get wrong " +"values. If you're using some content filter, disable this." +msgstr "" +"Hvis du teller innkommende e-post som utgende (standard), s blir e-post " +"telt mer enn n gang hvis du bruker innholdsfiltre som f.eks. amavis, slik " +"at du fr feil verdier. Hvis du bruker et innholdsfilter, s sl av dette." --- mailgraph-1.12.orig/debian/templates +++ mailgraph-1.12/debian/templates @@ -0,0 +1,22 @@ +Template: mailgraph/start_on_boot +Type: boolean +_Description: Should Mailgraph start on boot? + Mailgraph can start on boot time as a daemon. Then it will monitor + your Postfix logfile for changes. This is recommended. + . + The other method is to call mailgraph.pl by hand with the -c parameter. + +Template: mailgraph/mail_log +Type: string +Default: /var/log/mail.log +_Description: Which logfile should be used by mailgraph? + Enter the logfile which should be used to create the databases for + mailgraph. If unsure, leave default (/var/log/mail.log). + +Template: mailgraph/ignore_localhost +Type: boolean +Default: true +_Description: Count incoming mail as outgoing mail? + If you count incoming mail as outgoing mail (default), mail is counted more + than once if you use content filters like amavis, so you'll get wrong values. + If you're using some content filter, disable this. --- mailgraph-1.12.orig/debian/init +++ mailgraph-1.12/debian/init @@ -0,0 +1,56 @@ +#!/bin/sh + +### BEGIN INIT INFO +# Provides: mailgraph +# Required-Start: $local_fs $remote_fs +# Required-Stop: $local_fs $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Mail statistics frontend for Postfix +### END INIT INFO + +MAILGRAPH_CONFIG="/etc/default/mailgraph" +NAME="mailgraph" +DAEMON="/usr/sbin/mailgraph.pl" +PID_FILE="/var/run/mailgraph.pid" +RRD_DIR="/var/lib/mailgraph" +IGNORE_OPTION="" + +if [ -f $MAILGRAPH_CONFIG ]; then + . $MAILGRAPH_CONFIG +else + exit 0 +fi + +test -x /usr/sbin/mailgraph.pl || exit 0 + +if [ "$IGNORE_LOCALHOST" = "true" ]; then + IGNORE_OPTION="--ignore-localhost" +fi + +case "$1" in + start) + echo -n "Starting Postfix Mail Statistics: $NAME" + start-stop-daemon -S -q -b -p $PID_FILE -x $DAEMON -- -l $MAIL_LOG -d --daemon_rrd=$RRD_DIR $IGNORE_OPTION + echo "." + ;; + stop) + echo -n "Stopping Postfix Mail Statistics: $NAME" + if [ -f $PID_FILE ]; then + kill `cat $PID_FILE` + rm $PID_FILE + fi + echo "." + ;; + restart) + $0 stop + $0 start + ;; + force-reload) + $0 restart + ;; + *) + echo "Usage: $0 start|stop|restart|force-reload" + exit 1 + ;; +esac --- mailgraph-1.12.orig/debian/preinst +++ mailgraph-1.12/debian/preinst @@ -0,0 +1,3 @@ +#!/bin/sh +#Stop reading here, this hack does not exist +rm -f /var/lib/dpkg/info/mailgraph.postrm --- mailgraph-1.12.orig/debian/postinst +++ mailgraph-1.12/debian/postinst @@ -0,0 +1,26 @@ +#!/bin/sh +if [ ! -f /etc/default/mailgraph ]; then + . /usr/share/debconf/confmodule + db_get mailgraph/mail_log + echo "MAIL_LOG=$RET" > /etc/default/mailgraph + db_get mailgraph/start_on_boot + if [ "$RET" = "true" ]; then + update-rc.d mailgraph defaults >/dev/null + if [ ! -f /var/run/mailgraph.pid ]; then + if which invoke-rc.d >/dev/null 2>&1; then + invoke-rc.d mailgraph start + else + /etc/init.d/mailgraph start + fi + fi + else + update-rc.d -f mailgraph remove >/dev/null + fi + db_get mailgraph/ignore_localhost + echo "IGNORE_LOCALHOST=$RET" >> /etc/default/mailgraph +fi +if [ ! -d /var/lib/mailgraph ]; then + mkdir /var/lib/mailgraph + chown www-data:www-data /var/lib/mailgraph +fi +exit 0 --- mailgraph-1.12.orig/debian/rules +++ mailgraph-1.12/debian/rules @@ -0,0 +1,84 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/dpatch/dpatch.make + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -g +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: patch configure-stamp + dh_testdir + + touch build-stamp + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + debconf-updatepo + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + cp mailgraph.pl $(CURDIR)/debian/mailgraph/usr/sbin + cp mailgraph.cgi $(CURDIR)/debian/mailgraph/usr/lib/cgi-bin + chmod a+x $(CURDIR)/debian/mailgraph/usr/sbin/mailgraph.pl + chmod a+x $(CURDIR)/debian/mailgraph/usr/lib/cgi-bin/mailgraph.cgi + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs -n + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime + dh_installinit + dh_installcron + dh_installman + dh_installinfo + dh_installchangelogs CHANGES + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure unpatch --- mailgraph-1.12.orig/debian/compat +++ mailgraph-1.12/debian/compat @@ -0,0 +1 @@ +4 --- mailgraph-1.12.orig/debian/control +++ mailgraph-1.12/debian/control @@ -0,0 +1,15 @@ +Source: mailgraph +Section: admin +Priority: extra +Maintainer: Norbert Tretkowski +Build-Depends: debhelper (>= 4.1.16), dpatch, po-debconf +Standards-Version: 3.6.2 + +Package: mailgraph +Architecture: all +Depends: debconf | debconf-2.0, libfile-tail-perl, librrds-perl +Recommends: httpd | apache +Description: Mail statistics RRDtool frontend for Postfix + Mailgraph is a very simple mail statistics RRDtool frontend for + Postfix that produces daily, weekly, monthly and yearly graphs of + received/sent and bounced/rejected mail. --- mailgraph-1.12.orig/debian/postrm +++ mailgraph-1.12/debian/postrm @@ -0,0 +1,13 @@ +#!/bin/sh +. /usr/share/debconf/confmodule + +db_get mailgraph/start_on_boot +if [ "$RET" = "true" ]; then + update-rc.d -f mailgraph remove >/dev/null +fi + +db_purge + +rm -f /etc/default/mailgraph + +exit 0 --- mailgraph-1.12.orig/debian/changelog +++ mailgraph-1.12/debian/changelog @@ -0,0 +1,146 @@ +mailgraph (1.12-1.3) unstable; urgency=low + + * Non-maintainer upload to complete the former one + * Add debconf-updatepo to the clean target of debian/rules + Closes: #349844 + * Debconf translation updates: + - Norwegian Bokmål added. Closes: #396111 + * Lintian fixes: + - Use a default debhelper compatibility of 4, in debian/compat + - Build-Depend on po-debconf (we use it in the clean target) + - Provide an LSB section in the init script (a pretty basic one) + + -- Christian Perrier Wed, 8 Nov 2006 07:24:53 +0100 + +mailgraph (1.12-1.2) unstable; urgency=low + + * Non-maintainer upload. + * Fix typo in debconf template and unfuzzy translations. Closes: #394642 + * Debconf translation updates: + - Czech added and updated during NMU period. Closes: #327110 + - French added. Closes: #328849 + - Swedish added. Closes: #334845 + - Portuguese added. Closes: #362849 + - Slovak added. Sent in during the call for updates. + - Brazilian Portuguese added. Sent in during the call for updates. + - Italian added. Sent in during the call for updates. + - Vietnamese added. Sent in during the call for updates. + - German added by myself. + + -- Tobias Toedter Sun, 29 Oct 2006 11:27:22 +0100 + +mailgraph (1.12-1.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/postinst: Use invoke-rc.d, if available, to run init.d script. + + -- Lars Wirzenius Sat, 15 Jul 2006 11:11:53 +0300 + +mailgraph (1.12-1) unstable; urgency=low + + * New upstream release. + + Added compatibility with Spamassassin 3.1.x. (closes: #333239) + + Added compatibility with rrdtool 1.2.x. (closes: #326014) + + -- Norbert Tretkowski Sun, 13 Nov 2005 13:30:57 +0100 + +mailgraph (1.11-1) unstable; urgency=low + + * New upstream release. + + Added support for clamsmtpd. (closes: #288482, #291516) + * Updated debian/patches/102_mailgraph.cgi.diff. + * Added a default value for ignore_localhost debconf question. + (closes: #284241) + * Switched to gettext-based debconf templates, thanks to Martin Quinson for + the patch. (closes: #233265) + * Removed hack to remove rdd files when purging the package, caused trouble + on upgrades. + * No longer move files from /var/cache/mailgraph to /var/lib/mailgraph. + * Moved creation of /var/lib/mailgraph from preinst to postinst. + * Recommend "httpd | apache" to fix lintian warning. + * Added "| debconf-2.0" to debconf dependency. + * Updated Standards-Version to 3.6.2. + + -- Norbert Tretkowski Sun, 21 Aug 2005 17:58:43 +0200 + +mailgraph (1.10-1) unstable; urgency=low + + * New upstream release. (closes: #280749) + + Adds automatic refresh of html page. (closes: #255015) + * Split out patches and moved over to dpatch. + * Use /var/lib/mailgraph for rrd databases. (closes: #243424, #233192) + * Add a debconf question for enabling --ignore-localhost. (closes: #234384) + * Remove /etc/default/mailgraph on purge. (closes: #224458) + + -- Norbert Tretkowski Sat, 27 Nov 2004 18:32:26 +0100 + +mailgraph (1.8-1) unstable; urgency=low + + * New upstream release. (closes: #230904) + * No longer overwrite configuration on upgrade. (closes: #228623) + + -- Norbert Tretkowski Sat, 14 Feb 2004 18:06:45 +0100 + +mailgraph (1.4-5) unstable; urgency=low + + * Graphs now refer to "Spam", not "SPAM". (closes: #225369) + * Fixed loosing historical data when upgrading from 1.4-3 or older. + (closes: #225350) + * Changed path for datafiles in debconf template. + + -- Norbert Tretkowski Mon, 05 Jan 2004 22:21:35 +0100 + +mailgraph (1.4-4) unstable; urgency=low + + * Modified README.fetchmail so it's clear that mentioned option is for + fetchmail, and not for mailgraph.pl. (closes: #211874) + * Added README.Debian file with some explanations about usage of mailgraph, + thanks to Rev Simon Rumble. (closes: #219147) + * Moved png graphs to /var/cache instead of /var/lib. (closes: #224458) + * Fixed some typos in debconf template. (closes: #224194) + * Bumped Standards-Version to 3.6.1 (no changes). + + -- Norbert Tretkowski Thu, 25 Dec 2003 23:53:35 +0100 + +mailgraph (1.4-3) unstable; urgency=low + + * Call updaterc.d and db_purge in postrm. + + -- Norbert Tretkowski Sun, 03 Aug 2003 09:39:25 +0100 + +mailgraph (1.4-2) unstable; urgency=low + + * Modified postrm to remove all config files when purging. (closes: #203878) + * Extend debconf configuration to ask if RRD database files should be purged + when removing the package. + * Bumped Standards-Version to 3.6.0 (no changes). + + -- Norbert Tretkowski Sat, 02 Aug 2003 17:01:23 +0100 + +mailgraph (1.4-1) unstable; urgency=low + + * New upstream release. (closes: #190578) + * Fixed /var/lib/mailgraph permissions. (closes: #196861) + + -- Norbert Tretkowski Mon, 28 Jul 2003 23:52:25 +0100 + +mailgraph (1.2-3) unstable; urgency=low + + * Fixed init script. (closes: #184602) + * Added README.fetchmail file. (closes: #186769) + * Changed architecture to from any to all. + * Moved configuration file from /etc to /etc/default. + + -- Norbert Tretkowski Sat, 24 May 2003 23:21:35 +0200 + +mailgraph (1.2-2) unstable; urgency=low + + * Fixed config script. (closes: #182024) + + -- Norbert Tretkowski Mon, 24 Feb 2003 08:02:11 +0100 + +mailgraph (1.2-1) unstable; urgency=low + + * Initial Release. (closes: #167693) + + -- Norbert Tretkowski Mon, 17 Feb 2003 16:41:54 +0100