--- couriergraph-0.25.orig/couriergraph.cgi +++ couriergraph-0.25/couriergraph.cgi @@ -14,12 +14,12 @@ my $host = (POSIX::uname())[1]; my $scriptname = 'couriergraph.cgi'; -my $xpoints = 800; +my $xpoints = 540; my $points_per_sample = 3; my $ypoints = 160; my $ypoints_err = 96; -my $rrd = '/etc/postfix/couriergraph.rrd'; # path to where the RRD database is -my $tmp_dir = '/tmp/couriergraph'; # temporary directory where to store the images +my $rrd = '/var/lib/couriergraph/couriergraph.rrd'; # path to where the RRD database is +my $tmp_dir = '/var/cache/couriergraph'; # temporary directory where to store the images my @graphs = ( { title => 'Day Graphs', seconds => 3600*24, }, @@ -80,24 +80,24 @@ "CDEF:rmimapd_ssl_login=mimapd_ssl_login,60,*", "CDEF:vimapd_ssl_login=imapd_ssl_login,UN,0,imapd_ssl_login,IF,$range,*", - 'LINE:rpop3d_login#DD0000:pop3', - 'GPRINT:vpop3d_login:AVERAGE:total\: %.0lf logins', - 'GPRINT:rmpop3d_login:MAX:max\: %.0lf logins/min\l', + 'LINE:rpop3d_login#DD0000:pop3 ', + 'GPRINT:vpop3d_login:AVERAGE:total\: %8.0lf logins', + 'GPRINT:rmpop3d_login:MAX:max\: %4.0lf logins/min\l', 'HRULE:0#000000', 'AREA:rpop3d_ssl_login#770000:pop3/ssl:STACK', - 'GPRINT:vpop3d_ssl_login:AVERAGE:total\: %.0lf logins', - 'GPRINT:rmpop3d_ssl_login:MAX:max\: %.0lf logins/min\l', + 'GPRINT:vpop3d_ssl_login:AVERAGE:total\: %8.0lf logins', + 'GPRINT:rmpop3d_ssl_login:MAX:max\: %4.0lf logins/min\l', 'HRULE:0#000000', - 'LINE:rimapd_login#00DD00:imap', - 'GPRINT:vimapd_login:AVERAGE:total\: %.0lf logins', - 'GPRINT:rmimapd_login:MAX:max\: %.0lf logins/min\l', + 'LINE:rimapd_login#00DD00:imap ', + 'GPRINT:vimapd_login:AVERAGE:total\: %8.0lf logins', + 'GPRINT:rmimapd_login:MAX:max\: %4.0lf logins/min\l', 'HRULE:0#000000', 'AREA:rimapd_ssl_login#007700:imap/ssl:STACK', - 'GPRINT:vimapd_ssl_login:AVERAGE:total\: %.0lf logins', - 'GPRINT:rmimapd_ssl_login:MAX:max\: %.0lf logins/min\l', + 'GPRINT:vimapd_ssl_login:AVERAGE:total\: %8.0lf logins', + 'GPRINT:rmimapd_ssl_login:MAX:max\: %4.0lf logins/min\l', 'COMMENT:\s', 'COMMENT:['.$date.']\r', --- couriergraph-0.25.orig/couriergraph.pl +++ couriergraph-0.25/couriergraph.pl @@ -305,7 +305,7 @@ use Getopt::Long; use POSIX 'setsid'; -my $VERSION = "1.10"; +my $VERSION = "0.24"; # config my $rrdstep = 60; @@ -313,12 +313,18 @@ my $points_per_sample = 3; my $daemon_logfile = '/var/log/couriergraph.log'; -my $daemon_pidfile = '/var/run/couriergraph.pid'; -my $daemon_rrd_dir = '/var/log'; +my $daemon_pidfile = '/var/run/servergraph/couriergraph.pid'; +my $daemon_rrd_dir = '/var/lib/couriergraph'; + +my $courier_pop3d = 'courierpop3login'; +my $courier_imapd = 'imaplogin'; +my $courier_pop3d_ssl = 'pop3d-ssl'; +my $courier_imapd_ssl = 'imapd-ssl'; + # global variables my $logfile; -my $rrd = "/etc/postfix/couriergraph.rrd"; +my $rrd = "/var/lib/couriergraph/couriergraph.rrd"; my $year; my $this_minute; my %sum = ( imapd_ssl_login => 0, imapd_login => 0, pop3d_ssl_login => 0, pop3d_login => 0 ); @@ -350,10 +356,12 @@ print " --host=HOST use only entries for HOST (regexp) in syslog\n"; print " -d, --daemon start in the background\n"; print " --daemon-pid=FILE write PID to FILE instead of /var/run/mailgraph.pid\n"; - print " --daemon-rrd=DIR write RRDs to DIR instead of /var/log\n"; - print " --daemon-log=FILE write verbose-log to FILE instead of /var/log/mailgraph.log\n"; + print " --daemon-rrd=DIR write RRDs to DIR instead of /var/lib/couriergraph\n"; + print " --daemon-log=FILE write verbose-log to FILE instead of /var/log/couriergraph.log\n"; print " --rrd-name=NAME use NAME.rrd for the rrd files\n"; - + print " --ignore-host=NAME ignore logins from host 'NAME'\n"; + print " --ignore-localhost ignore logins from localhost\n"; + exit; } @@ -405,29 +413,29 @@ sub daemonize() { - chdir $daemon_rrd_dir or die "mailgraph: can't chdir to $daemon_rrd_dir: $!"; - -w $daemon_rrd_dir or die "mailgraph: can't write to $daemon_rrd_dir\n"; - open STDIN, '/dev/null' or die "mailgraph: can't read /dev/null: $!"; + chdir $daemon_rrd_dir or die "couriergraph: can't chdir to $daemon_rrd_dir: $!"; + -w $daemon_rrd_dir or die "couriergraph: can't write to $daemon_rrd_dir\n"; + open STDIN, '/dev/null' or die "couriergraph: can't read /dev/null: $!"; if($opt{verbose}) { open STDOUT, ">>$daemon_logfile" - or die "mailgraph: can't write to $daemon_logfile: $!"; + or die "couriergraph: can't write to $daemon_logfile: $!"; } else { open STDOUT, '>/dev/null' - or die "mailgraph: can't write to /dev/null: $!"; + or die "couriergraph: can't write to /dev/null: $!"; } - defined(my $pid = fork) or die "mailgraph: can't fork: $!"; + defined(my $pid = fork) or die "couriergraph: can't fork: $!"; if($pid) { # parent open PIDFILE, ">$daemon_pidfile" - or die "mailgraph: can't write to $daemon_pidfile: $!\n"; + or die "couriergraph: can't write to $daemon_pidfile: $!\n"; print PIDFILE "$pid\n"; close(PIDFILE); exit; } # child - setsid or die "mailgraph: can't start a new session: $!"; - open STDERR, '>&STDOUT' or die "mailgraph: can't dup stdout: $!"; + setsid or die "couriergraph: can't start a new session: $!"; + open STDERR, '>&STDOUT' or die "couriergraph: can't dup stdout: $!"; } sub init_rrd($) @@ -473,22 +481,22 @@ my $prog = $sl->[2]; my $text = $sl->[4]; - if ($prog eq 'courierpop3login') { + if ($prog eq $courier_pop3d) { if($text =~ /LOGIN,/) { event($time, 'pop3d_login'); } } - elsif ($prog eq 'imaplogin') { + elsif ($prog eq $courier_imapd) { if($text =~ /LOGIN,/) { event($time, 'imapd_login'); } } - elsif ($prog eq 'pop3d-ssl') { + elsif ($prog eq $courier_pop3d_ssl) { if($text =~ /LOGIN,/) { event($time, 'pop3d_ssl_login'); } } - elsif ($prog eq 'imapd-ssl') { + elsif ($prog eq $courier_imapd_ssl) { if($text =~ /LOGIN,/) { event($time, 'imapd_ssl_login'); } @@ -536,7 +544,7 @@ =head1 SYNOPSIS -B [I...] +B [I...] --man show man-page and exit -h, --help display this help and exit @@ -550,19 +558,24 @@ -y, --year starting year of the log file (default: current year) --host=HOST use only entries for HOST (regexp) in syslog -d, --daemon start in the background - --daemon-pid=FILE write PID to FILE instead of /var/run/mailgraph.pid - --daemon-rrd=DIR write RRDs to DIR instead of /var/log - --daemon-log=FILE write verbose-log to FILE instead of /var/log/mailgraph.log + --daemon-pid=FILE write PID to FILE instead of /var/run/couriergraph.pid + --daemon-rrd=DIR write RRDs to DIR instead of /var/lib/mailgraph + --daemon-log=FILE write verbose-log to FILE instead of /var/log/couriergraph.log --rrd-name=NAME use NAME.rrd for the rrd files + --ignore-host=NAME ignore logins from host 'NAME' + --ignore-localhost ignore logins from localhost + =head1 DESCRIPTION -This script does parse syslog and updates the RRD database (mailgraph.rrd) in -the current directory. +This script parses the specified logfile and updates the RRD database +(couriergraph.rrd) in the specified directory (default: /var/lib/couriergraph) =head1 COPYRIGHT -Copyright (c) 2004 by ETH Zurich. All rights reserved. +Copyright (c) 2002-2004 by Ralf Hildebrandt. +Based upon 'mailgraph', which is +Copyright (c) 2002-2004 by ETH Zurich. All rights reserved. =head1 LICENSE @@ -582,12 +595,13 @@ =head1 AUTHOR +SRalf.Hildebrandt@charite.deE> Sdws@ee.ethz.chE> =head1 HISTORY - 2002-03-19 ds Version 0.20 - 2004-10-11 ds Initial ISGTC version (1.10) + 2002-?-? ds Version 0.23 + 2004-12-07 ds This version (0.24) =cut --- couriergraph-0.25.orig/debian/copyright +++ couriergraph-0.25/debian/copyright @@ -0,0 +1,18 @@ +This package was debianized by Jose Luis Tallon on +Mon, 24 May 2004 15:31:44 +0200. + +It was downloaded from http://www.stahl.bau.tu-bs.de/~hildeb/postfix/couriergraph + + +* Upstream Author: Ralf Hildebrandt + +* Copyright: + copyright (c) 2002 Ralf Hildebrandt + based upon mailgraph, which is + copyright (c) 2000, 2001, 2002 David Schweikert + released under the GNU General Public License + +* License: GPL + +On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/. --- couriergraph-0.25.orig/debian/control +++ couriergraph-0.25/debian/control @@ -0,0 +1,17 @@ +Source: couriergraph +Section: admin +Priority: extra +Maintainer: Jose Luis Tallon +Build-Depends: debhelper (>= 4.2) +Build-Depends-Indep: po-debconf (>= 0.8.2) +Standards-Version: 3.7.3 + +Package: couriergraph +Architecture: all +Pre-Depends: debconf (>= 1.1) | debconf-2.0 +Depends: libfile-tail-perl, librrds-perl (>= 1.2) +Recommends: apache2|httpd, courier-pop, courier-imap +Description: Mail statistics RRDtool frontend for Courier-{POP,IMAP} + Couriergraph is a very simple mail statistics RRDtool frontend for + Courier-POP & Courier-IMAP that produces daily, weekly, monthly and + yearly graphs of mail server's activity (logins, traffic, etc). --- couriergraph-0.25.orig/debian/changelog +++ couriergraph-0.25/debian/changelog @@ -0,0 +1,197 @@ +couriergraph (0.25-4.3) unstable; urgency=low + + * Non-maintainer upload. + * Improving start handling of couriergraph daemon. + Instead of introducing broken check for testing if daemon is already + running, leave the work to the start-stop-daemon. Use --oknodo, + --startas and --name to make sure at most one instance of the daemon is + running. + Thanks to Julien Cristau + + -- Salvatore Bonaccorso Mon, 12 Nov 2012 18:53:03 +0100 + +couriergraph (0.25-4.2) unstable; urgency=low + + * Non-maintainer upload. + * Don't provide /var/run/servergraph in binary package. + Fix "Ships a folder in /var/run or /var/lock (Policy Manual section + 9.3.2)". Create /var/run/servergraph in initscript if + /var/run/servergraph is not present. + Thanks to Thomas Goirand (Closes: #689884) + * Check if daemon pid file is present and don't start daemon. + Check if daemon pid is present. If pid file is present assume the daemon + is still running and do not start another instance. + This is otherwise a Debian Policy 9.3.2 violation. (Closes: #692157) + * Update Brazilian Portuguese debconf templates translation. + Thanks to Adriano Rafael Gomes (Closes: #662169) + + -- Salvatore Bonaccorso Fri, 02 Nov 2012 21:22:11 +0100 + +couriergraph (0.25-4.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix pending l10n issues. Debconf translations: + - Danish (Joe Hansen). Closes: #587430 + - Polish (Michał Kułach). Closes: #658979 + - Italian (Beatrice Torracca). Closes: #659607 + + -- Christian Perrier Sun, 18 Mar 2012 07:47:50 +0100 + +couriergraph (0.25-4) unstable; urgency=low + + * Acknowledge previous NMUs. Thank you, guys. + + * Packaging + - Add LSB dependency info (Closes: #468134) + - Ensured debhelper 4 compatibility level + - Updated to S-V 3.7.3 with no changes + + * Cosmetic changes + - Fix graph formatting (Closes: #410013) + - Ensure README.Debian is accurate (Closes: #369839) + + -- Jose Luis Tallon Sun, 17 Jun 2007 14:48:33 +0200 + +couriergraph (0.25-3.3) unstable; urgency=high + + * Non-maintainer upload during BSP. + * Fix unconditional use of debconf in postrm (Closes: #416735). + * Update Catalan debconf translation (Closes: #413630). + * Add Dutch debconf translation (Closes: #423068). + + -- Luk Claes Sat, 19 May 2007 15:58:24 +0200 + +couriergraph (0.25-3.2) unstable; urgency=low + + * Non-maintainer upload during BSP. + * conditional include of /usr/share/debconf/confmodule (Closes: #416735) + + -- Martin Zobel-Helas Thu, 17 May 2007 13:51:08 +0200 + +couriergraph (0.25-3.1) unstable; urgency=low + + * Non-maintainer upload to fix pending l10n issues. + * Debconf translations: + - Russian. Closes: #407989 + - Portuguese. Closes: #408016 + - Galician. Closes: #412913 + - Catalan. Closes: #412954 + - Convert all PO files to UTF-8 (Japanese was UTF-8 already) + + -- Christian Perrier Thu, 1 Mar 2007 18:07:40 +0100 + +couriergraph (0.25-3) unstable; urgency=low + + * Late debconf translations: + - Norwegian Bokmål. Closes: #407986 + - German. Closes: #407983 + + -- Jose Luis Tallon Tue, 23 Jan 2007 08:11:24 +0100 + +couriergraph (0.25-2) unstable; urgency=low + + [ Jose Luis Tallon ] + * Acknowledge NMU (Thanks, Christian) (Closes: #368021) + + * Update to conform with the rest of the Archive's layout + - Moved couriergraph.pl to /usr/lib/cgi-bin (Closes: #369839) + + * Set debhelper compat level in debian/compat instead of exporting + - Do not force it in order to ease backporting + - Keep it to 4 as we're in a freeze + + [ Christian Perrier ] + * Debconf translations: + - Added Norwegian Bokmål. Sent directly by the translator + - Added Punjabi. Sent directly by the translator + - Updated Swedish. Sent directly by the translator + - Added Romanian. Sent directly by the translator + - Added Russian. Closes: #407989 + - Added Portuguese. Closes: #408016 + + -- Jose Luis Tallon Tue, 23 Jan 2007 06:04:40 +0100 + +couriergraph (0.25-1.1) unstable; urgency=low + + * Non-maintainer upload to fix longstanding l10n issues + * Debconf translations: + - French updated. Closes: #368021 + - Czech updated. Closes: #391550 + - Japanese updated. Closes: #393594 + + -- Christian Perrier Mon, 15 Jan 2007 23:39:17 +0100 + +couriergraph (0.25-1) unstable; urgency=low + + * New upstream version (Closes: #351040) + - Couriergraph now works with rrdtool 1.2 (Closes: #325729) + - Couriergraph: Y-axis caption should be "logins/hour" on + the second graph (Closes: #340330) + + * Postrm: clean remaining /etc/default/couriergraph on purge + + * New standards version conformance (3.7.2) + - Moved couriergraph.pl to /usr/share/cgi-lib (per 3.7.0.0) + + -- Jose Luis Tallon Thu, 12 May 2006 3:25:49 +0200 + +couriergraph (0.24-2) unstable; urgency=low + + * Acknowledge NMU. Thanks! (Closes: #354762) + - Fix broken recommends (Closes: #352785) + - Add debconf-2.0 alternative (Closes: #331784). + - Add Vietnamese debconf translation (Closes: #313372). + - Add Czech debconf translation (Closes: #306445). + - Add Swedish debconf translation (Closes: #333370). + - Fix default pop login detection (Closes: #293654). + + * Incompatibility with rrdtool1.2 has to wait until next version + + -- Jose Luis Tallon Thu, 11 May 2006 1:42:36 +0200 + +couriergraph (0.24-1.1) unstable; urgency=high + + * Non-maintainer upload. + * Fix broken recommends (Closes: #352785). + * Add debconf-2.0 alternative (Closes: #331784). + * Add Vietnamese debconf translation (Closes: #313372). + * Add Czech debconf translation (Closes: #306445). + * Add Swedish debconf translation (Closes: #333370). + * Fix default pop login detection (Closes: #293654). + + -- Luk Claes Tue, 28 Feb 2006 23:19:31 +0100 + +couriergraph (0.24-1) unstable; urgency=low + + * New upstream version (Closes: #284958) + - Includes fix to work with Courier-3.0.x (Closes: #277160) + + * Japanese translation, by Hideki Yamane (Closes: #269017) + + * Corrected minor typo in templates and all available translations. + + * Upload sponsored by Roberto Lumbreras + + -- Jose Luis Tallon Wed, 9 Dec 2004 18:38:25 +0200 + +couriergraph (0.23-2) unstable; urgency=low + + * Added Some translations: + - Brazilian portuguese, by (Closes: #267337) + - French, by (Closes: #268585) + + * Upload sponsored by Roberto Lumbreras + + -- Jose Luis Tallon Wed, 29 Sep 2004 20:05:25 +0200 + +couriergraph (0.23-1) unstable; urgency=low + + * Fullfill ITP (Closes: #250856) + - Packaged CourierGraph 0.23 + - Merged several improvements from more recent 'mailgraph' versions. + - Policy compliant out-of-the-box. + - PO-Debconf-based configuration. + + * Package sponsored by Roberto Lumbreras + + -- Jose Luis Tallon Sun, 01 Aug 2004 23:30:21 +0200 --- couriergraph-0.25.orig/debian/postinst +++ couriergraph-0.25/debian/postinst @@ -0,0 +1,76 @@ +#!/bin/sh +# postinst script for CourierGraph +# + +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi +db_version 2.0 + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' n-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +DATADIR=/var/lib/couriergraph +CACHEDIR=/var/cache/couriergraph +DEFAULTS=/etc/default/couriergraph + +case "$1" in + configure) + + if [ ! -d $DATADIR ]; then mkdir $DATADIR; fi + chown root:adm $DATADIR + chmod 775 $DATADIR + + if [ ! -d $CACHEDIR ]; then mkdir -p $CACHEDIR; fi + chown www-data:www-data $CACHEDIR + + + if [ ! -f $DEFAULTS ]; then + db_get couriergraph/logfile + echo "MAIL_LOG=$RET" > $DEFAULTS + fi + + db_get couriergraph/start_on_boot + if [ "$RET" = "true" ]; then + update-rc.d couriergraph defaults >/dev/null + else + update-rc.d -f couriergraph remove >/dev/null 2>&1 + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \$1'" >&2 + exit 1 + ;; +esac + +db_get couriergraph/start_on_boot +if [ "$RET" = "true" ]; then + invoke-rc.d --quiet couriergraph start +fi +db_stop + +# NO debhelper tag -- on purpose + +exit 0 --- couriergraph-0.25.orig/debian/README.Debian +++ couriergraph-0.25/debian/README.Debian @@ -0,0 +1,15 @@ +Couriergraph gathers statistics about a Courier-{POP,IMAP}-{,SSL} server's +activity 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/couriergraph.cgi. With any +normal Debian web server install, this should be accessible as +http://localhost/cgi-bin/couriergraph.cgi + +This package is largely based on work by Norbert Tretkowski + + -- Jose Luis Tallon Mon, 24 May 2004 16:43:08 +0200 --- couriergraph-0.25.orig/debian/init +++ couriergraph-0.25/debian/init @@ -0,0 +1,61 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: couriergraph +# Required-Start: $remote_fs $syslog +# Required-Stop: $remote_fs $syslog +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +### END INIT INFO + +CONFIG=/etc/default/couriergraph +MAIL_LOG=/var/log/mail.log + +NAME=couriergraph +DESC="Courier login Statistics" +DAEMON=/usr/sbin/couriergraph.pl + +PIDDIR=/var/run/servergraph +PIDFILE=$PIDDIR/couriergraph.pid +RRD_DIR=/var/lib/couriergraph +RRD_NAME=couriergraph + +test -x $DAEMON || exit 0 + +if [ -f $CONFIG ]; then + . $CONFIG +fi + +if [ ! -d $PIDDIR ]; then + mkdir -p $PIDDIR + chown daemon:root $PIDDIR +fi + +case "$1" in + start) + echo -n "Starting $DESC: " + start-stop-daemon --start --oknodo --quiet --pidfile $PIDFILE \ + --startas $DAEMON --name couriergraph.pl -N 15 -c daemon:adm -- \ + -l $MAIL_LOG -d --daemon_rrd=$RRD_DIR --rrd_name=$RRD_NAME + echo "$NAME." + ;; + + stop) + echo -n "Stopping $DESC: " + start-stop-daemon --stop --oknodo --pidfile $PIDFILE + rm -f $PIDFILE + echo "$NAME." + ;; + + restart|force-reload) + $0 stop + sleep 1 + $0 start + ;; + + *) + echo "Usage: $0 start|stop|restart|force-reload" + exit 1 + ;; +esac + +exit 0 --- couriergraph-0.25.orig/debian/rules +++ couriergraph-0.25/debian/rules @@ -0,0 +1,84 @@ +#!/usr/bin/make -f +# debian/rules for CourierGraph +# by Jose Luis Tallon, +# Based upon work by +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +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: configure-stamp + dh_testdir + + touch build-stamp + +clean: debian/po/templates.pot + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + dh_clean + +debian/po/templates.pot: debian/templates + @debconf-updatepo + + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + dh_install + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs -n + dh_installexamples +# dh_installlogrotate + dh_installinit + dh_installcron + dh_installman +# dh_installinfo + dh_installchangelogs + dh_link + dh_compress + dh_fixperms + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install + # We have nothing to do + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- couriergraph-0.25.orig/debian/postrm +++ couriergraph-0.25/debian/postrm @@ -0,0 +1,58 @@ +#!/bin/sh +# postrm script for CourierGraph +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +DATADIR=/var/lib/couriergraph +CACHEDIR=/var/cache/couriergraph +DEFAULTS=/etc/default/couriergraph + +case "$1" in + purge) + if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule + db_get couriergraph/stay_on_purge + if [ "$RET" = "true" ]; then + if [ -d $DATADIR ]; then rm -rf $DATADIR + else rm -f $DATADIR/couriergraph.rrd + fi + fi + fi + rm -rf $CACHEDIR + rm -f $DEFAULTS + ;; + + remove) + rm -rf $CACHEDIR + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \$1'" >&2 + exit 1 + +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- couriergraph-0.25.orig/debian/dirs +++ couriergraph-0.25/debian/dirs @@ -0,0 +1,3 @@ +usr/sbin +usr/lib/cgi-bin +var/lib/couriergraph --- couriergraph-0.25.orig/debian/Makefile +++ couriergraph-0.25/debian/Makefile @@ -0,0 +1,6 @@ +# +.PHONY: dummy + + +clean: dummy + rm -f *~ --- couriergraph-0.25.orig/debian/install +++ couriergraph-0.25/debian/install @@ -0,0 +1,2 @@ +couriergraph.pl usr/sbin +couriergraph.cgi usr/lib/cgi-bin --- couriergraph-0.25.orig/debian/compat +++ couriergraph-0.25/debian/compat @@ -0,0 +1 @@ +4 --- couriergraph-0.25.orig/debian/config +++ couriergraph-0.25/debian/config @@ -0,0 +1,34 @@ +#!/bin/sh +# config script for CourierGraph +# +# by Jose Luis Tallon + +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi +db_version 2.0 + +db_title "CourierGraph" + +set -e + +case "$1" in + configure|reconfigure) + + db_input medium couriergraph/start_on_boot || true + db_go + + db_input medium couriergraph/logfile || true + db_go + + db_input medium couriergraph/stay_on_purge || true + db_go + ;; + + *) + echo "config called with unknown argument \$1'" >&2 + exit 0 + ;; +esac + +exit 0 --- couriergraph-0.25.orig/debian/prerm +++ couriergraph-0.25/debian/prerm @@ -0,0 +1,36 @@ +#! /bin/sh +# prerm script for CourierGraph +# by Jose Luis Tallon +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + remove|deconfigure) + ;; + upgrade) + ;; + failed-upgrade) + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 --- couriergraph-0.25.orig/debian/templates +++ couriergraph-0.25/debian/templates @@ -0,0 +1,22 @@ +Template: couriergraph/start_on_boot +Type: boolean +Default: true +_Description: Should CourierGraph start on boot? + Couriergraph can start on boot time as a daemon. Then it will monitor + your mail logfile for changes. This is recommended. + . + The other method is to call couriergraph.pl by hand with the -l parameter. + +Template: couriergraph/logfile +Type: string +Default: /var/log/mail.log +_Description: Logfile to be used by couriergraph: + Enter the logfile which should be used to create the databases for + couriergraph. If unsure, leave default. + +Template: couriergraph/stay_on_purge +Type: boolean +Default: true +_Description: Remove RRD files on purge? + Couriergraph keeps its database files under /var/lib/couriergraph. State + whether this directory should be removed completely on purge or not. --- couriergraph-0.25.orig/debian/po/pl.po +++ couriergraph-0.25/debian/po/pl.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. +# +# Michał Kułach , 2012. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2012-02-07 02:34+0100\n" +"Last-Translator: Michał Kułach \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.2\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should CourierGraph start on boot?" +msgstr "Czy CourierGraph ma być uruchamiany podczas rozruchu?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Couriergraph może być uruchamiany w czasie rozruchu systemu jako demon. " +"Będzie wtedy monitorował plik dziennika poczty elektronicznej wyszukując " +"zmian. Jest to zalecana metoda." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "Inną metodą jest ręczne wywoływanie couriergraph.pl z parametrem -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Plik dziennika do użycia przez couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Proszę podać plik dziennika, który powinien zostać użyty do stworzenia bazy " +"danych couriergraph. W przypadku wątpliwości, proszę pozostawić to pole bez " +"zmian." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Usunąć pliki RRD podczas czyszczenia?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph ma swoją bazę danych w /var/lib/couriergraph. Proszę określić, " +"czy powinna zostać całkowicie usunięta podczas czyszczenia pakietu." --- couriergraph-0.25.orig/debian/po/gl.po +++ couriergraph-0.25/debian/po/gl.po @@ -0,0 +1,74 @@ +# Galician translation of couriergraph's debconf templates +# This file is distributed under the same license as the couriergraph package. +# Jacobo Tarrio , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: couriergraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-02-28 22:47+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"Language: gl\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 CourierGraph start on boot?" +msgstr "¿CourierGraph debería iniciarse co ordenador?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Couriergraph pode arrincar no inicio do sistema coma un servizo. Despois ha " +"monitorizar o ficheiro de rexistro do correo á espera de cambios. " +"Recoméndase facelo." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"O outro método consiste en executar couriergraph.pl á man co parámetro -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Ficheiro de rexistro a empregar por couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Introduza o ficheiro de rexistro que se debería empregar para crear as bases " +"de datos de couriergraph. Se non está seguro, deixe o valor por defecto." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "¿Eliminar os ficheiros RRD ao purgar?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph grava os seus ficheiros de base de datos en /var/lib/" +"couriergraph. Indique se quere eliminar totalmente ese directorio ao purgar " +"o paquete ou non." --- couriergraph-0.25.orig/debian/po/nl.po +++ couriergraph-0.25/debian/po/nl.po @@ -0,0 +1,87 @@ +# +# 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: couriergraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-04-29 12:37+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should CourierGraph start on boot?" +msgstr "" +"Wilt u dat CourierGraph gestart wordt tijdens het opstarten van het systeem?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Het is mogelijk om CourierGraph als achtergronddienst op te starten tijdens " +"het opstarten van het systeem. Het zal dan uw e-mail logbestanden " +"controleren op veranderingen. Dit is aangeraden." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"De andere methode is om couriergraph.pl handmatig aan te roepen met de -I " +"parameter." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Door couriergraph te gebruiken logbestand:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Welke logbestanden dienen gebruikt te worden om de databases van " +"couriergraph aan te maken? Als u twijfelt laat dit dan op de standaardwaarde " +"staan." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Wilt RRD-bestanden verwijderen bij wissen van dit pakket?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"De Couriergraph databasebestanden worden opgeslagen in /var/lib/" +"couriergraph, wilt u dat deze map volledig verwijderd wordt bij wissen van " +"dit pakket?" --- couriergraph-0.25.orig/debian/po/nb.po +++ couriergraph-0.25/debian/po/nb.po @@ -0,0 +1,72 @@ +# translation of couriergraph_nb.po to Norwegian Bokmål +# Bjørn Steensrud , 2007. +# Norwegian Bokmål +msgid "" +msgstr "" +"Project-Id-Version: couriergraph_nb\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-01-22 19:46+0100\n" +"Last-Translator: Bjørn Steensrud \n" +"Language-Team: Norwegian Bokmål \n" +"Language: \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" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should CourierGraph start on boot?" +msgstr "Skal CourierGraph starte når maskinen starter?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Couriergraph kan starte som en daemon når systemet startes. Da sjekker den e-" +"postloggen etter endringer. Dette anbefales." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"Den andre måten er å starte couriergraph.pl manuelt med parameteren -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Loggfil som couriergraph skal bruke:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Oppgi loggfil som skal brukes for å opprette databasene for couriergraph. La " +"standardvalget stå hvis du er usikker." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Skal RRD-filene fjernes ved avinstallering?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph har databasefilene ligge i /var/lib/couriergraph. Oppgi om " +"denne mappa skal slettes helt hvis couriergraph avinstalleres." --- couriergraph-0.25.orig/debian/po/ca.po +++ couriergraph-0.25/debian/po/ca.po @@ -0,0 +1,79 @@ +# +# Catalan translations for couriergraph package. +# Copyright (C) 2007 Jose Luis Tallon. +# This file is distributed under the same license as the couriergraph +# package. +# +# Jordà Polo , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.25-3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-03-06 09:31+0100\n" +"Last-Translator: Jordà Polo \n" +"Language-Team: Català \n" +"Language: \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 CourierGraph start on boot?" +msgstr "Voleu iniciar CourierGraph en l'arrencada?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"És possible iniciar CourierGraph com a dimoni en el moment d'arrencada. Així " +"monitoritzarà des del començament els canvis al fitxer de registre del " +"correu. Aquesta és l'opció recomanada." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"L'altre mètode és cridar «couriergraph.pl» manualment amb el paràmetre «-l»." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Fitxer de registre utilitzat per couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Introduïu el fitxer de registre que s'hauria d'utilitzar per crear les bases " +"de dades necessàries per couriergraph. Si dubteu, deixeu el fitxer " +"predeterminat." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Voleu esborrar els fitxers RRD en eliminar completament el paquet?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph manté els fitxers de base de dades a /var/lib/couriergraph. " +"Indiqueu si voleu esborrar o no aquest directori en eliminar completament el " +"paquet." --- couriergraph-0.25.orig/debian/po/ro.po +++ couriergraph-0.25/debian/po/ro.po @@ -0,0 +1,87 @@ +# translation of ro.po to Romanian +# +# 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. +# +# Eddy Petrișor , 2007. +msgid "" +msgstr "" +"Project-Id-Version: ro\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-01-22 19:03+0200\n" +"Last-Translator: Eddy Petrișor \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should CourierGraph start on boot?" +msgstr "CourierGraph va porni odată cu pornirea sistemului?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Couriergraph poate porni la pornirea sistemului ca serviciu. Apoi va urmări " +"schimbările jurnalului de poştă electronică. Acest lucru este recomandat." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"Cealaltă metodă este apelarea manuală a lui couriergraph.pl cu parametrul -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Jurnalul folosit de couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Introduceţi fişierul-jurnal care trebuie folosit pentru crearea bazelor de " +"date pentru couriergraph. În caz de nesiguranţă, lăsaţi valoarea implicită." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Se şterg fişierele RRD la curăţarea pachetului?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph îşi păstrează fişierele-bază-de-date în /var/lib/couriergraph. " +"Precizaţi dacă acest director trebuie sau nu şters complet la curăţarea " +"pachetului." --- couriergraph-0.25.orig/debian/po/POTFILES.in +++ couriergraph-0.25/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- couriergraph-0.25.orig/debian/po/fr.po +++ couriergraph-0.25/debian/po/fr.po @@ -0,0 +1,85 @@ +# +# 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: Clément Stenac +msgid "" +msgstr "" +"Project-Id-Version: couriergraph 0.23\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2006-05-18 17:48+0200\n" +"Last-Translator: Thomas Huriaux \n" +"Language-Team: French \n" +"Language: fr\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 CourierGraph start on boot?" +msgstr "Faut-il lancer CourierGraph au démarrage ?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"CourierGraph peut être lancé en tant que démon au démarrage. Il commencera " +"alors à surveiller vos journaux de courriel. Ce choix est recommandé." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"L'autre méthode est le lancement manuel de couriergraph.pl avec le paramètre " +"-l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Journal utilisé par CourierGraph :" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Veuillez entrer le journal dont les données serviront à la création des " +"bases de données de CourierGraph. Si vous n'êtes pas sûr, laissez la valeur " +"par défaut." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Faut-il supprimer les fichiers RRD lors de la purge ?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"CourierGraph garde ses fichiers de bases de données dans le répertoire /var/" +"lib/couriergraph. Veuillez confirmer s'il faut complètement supprimer ce " +"répertoire lors de la purge." --- couriergraph-0.25.orig/debian/po/sv.po +++ couriergraph-0.25/debian/po/sv.po @@ -0,0 +1,81 @@ +# 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: couriergraph 0.24-1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-01-22 09:52+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"Language: sv\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 CourierGraph start on boot?" +msgstr "Ska CourierGraph startas vid uppstart?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Couriergraph kan startas som en demon vid uppstart. Den kommer då att " +"övervaka din e-postloggfil för ändringar. Detta är rekommenderat." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"Den andra metoden är att kalla upp couriergraph.pl för hand med parametern -" +"l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Loggfil som ska användas av couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Ange loggfilen som ska användas för att skapa databaserna för couriergraph. " +"Om du är osäker, lämna den blank." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Ta bort RRD-filer vid avinstallation?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph sparar sina databasfiler under /var/lib/couriergraph. Bestäm " +"huruvida den här katalogen ska helt tas bort vid avinstallation eller inte. " --- couriergraph-0.25.orig/debian/po/da.po +++ couriergraph-0.25/debian/po/da.po @@ -0,0 +1,73 @@ +# Danish translation couriergraph. +# Copyright (C) 2010 couriergraph & nedenstående oversætter. +# This file is distributed under the same license as the couriergraph package. +# Joe Hansen , 2010 +# +msgid "" +msgstr "" +"Project-Id-Version: couriergraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2010-06-28 17:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: \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 CourierGraph start on boot?" +msgstr "Skal CourierGraph starte ved opstart?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Couriergraph kan starte ved opstart som en dæmon. Derefter vil den overvåge " +"din postlogfil for ændringer. Dette anbefales." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"Den anden metode er at kalde couriergraph.p1 manuelt med parameteren -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Logfil til brug for couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Indtast logfilen som skal bruges for at oprette databaserne til " +"couriergraph. I tvivl, brug standard." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Fjern RRD-filer ved sletning?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph har sine databasefiler under /var/lib/couriergraph. Angiv " +"hvorvidt denne mappe skal fjernes fuldstændig ved sletning eller ej." --- couriergraph-0.25.orig/debian/po/pt_BR.po +++ couriergraph-0.25/debian/po/pt_BR.po @@ -0,0 +1,78 @@ +# Debconf translations for couriergraph. +# Copyright (C) 2012 THE couriergraph'S COPYRIGHT HOLDER +# This file is distributed under the same license as the couriergraph package. +# André Luís Lopes , 2004. +# Adriano Rafael Gomes , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: couriergraph 0.25-4.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2012-02-26 13:39-0300\n" +"Last-Translator: Adriano Rafael Gomes \n" +"Language-Team: Brazilian Portuguese \n" +"Language: pt_BR\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 CourierGraph start on boot?" +msgstr "O CourierGraph deve ser iniciado na inicialização da máquina?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"O CourierGraph pode ser iniciado na inicialização da máquina como um daemon. " +"Assim, ele monitorará seu arquivo de log de e-mails em busca de mudanças. " +"Esse é o método recomendado." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"O outro método é invocar o script couriergraph.pl manualmente com o " +"parâmetro -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Arquivo de log para ser usado pelo couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Informe o arquivo de log que deverá ser usado para criar as bases de dados " +"para o couriergraph. Em caso de dúvidas, mantenha o valor padrão." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Remover arquivos RRD ao expurgar o pacote?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"O CourierGraph mantém seus arquivos de bases de dados sob o diretório /var/" +"lib/couriergraph. Indique se esse diretório deverá ser completamente " +"removido quando o pacote couriergraph for expurgado." --- couriergraph-0.25.orig/debian/po/pt.po +++ couriergraph-0.25/debian/po/pt.po @@ -0,0 +1,71 @@ +# Portuguese translation of couriergraph's debconf messages +# This file is distributed under the same license as the couriergraph package. +# Carlos Lisboa , 2007 +msgid "" +msgstr "" +"Project-Id-Version: couriergraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-01-22 22:19+ZONE\n" +"Last-Translator: Carlos Lisboa \n" +"Language-Team: Portuguese \n" +"Language: pt\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 CourierGraph start on boot?" +msgstr "Deve o Couriergraph ser iniciado no arranque?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"O Couriergraph pode iniciar no arranque como um daemon. Assim irá " +"monitorizar alterações do ficheiro de registo de mail. Isto é recomendado." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "O outro método é chamar couriergraph.pl à mão com o parâmetro -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Ficheiro de registo a ser usado pelo couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Introduza o ficheiro de registo que deve ser usado para criar as bases de " +"dados do couriergraph. Se não souber, deixe a opção por omissão." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Remover os ficheiros RRD quando purgado?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"O Couriergraph mantém os ficheiros de base de dados em /var/lib/" +"couriergraph. Diga se este directório deve ser completamente removido quando " +"purgado ou não." --- couriergraph-0.25.orig/debian/po/vi.po +++ couriergraph-0.25/debian/po/vi.po @@ -0,0 +1,75 @@ +# Vietnamese translation for couriergraph. +# Copyright © 2005 Free Software Foundation, Inc. +# Clytie Siddall , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: couriergraph 0.24-1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2005-06-13 20:09+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"Language: vi\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" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should CourierGraph start on boot?" +msgstr "Bạn có muốn khởi chạy trình CourierGraph lúc khởi động máy không?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Trình CourierGraph có thể khởi chạy lúc khởi động máy với tư cách trình nền, " +"để theo dõi tập tin bản ghi để tìm thay đổi nào. Khuyến khích làm như thế." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "Phương pháp khác là tự gọi «couriergraph.pl» với tham số «-l»." + +#. Type: string +#. Description +#: ../templates:2001 +#, fuzzy +msgid "Logfile to be used by couriergraph:" +msgstr "Trình couriergraph nên dùng tập tin bản ghi nào?" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Hãy nhập tập tin bản ghi nền được dùng để tạo cơ sở dữ liệu cho " +"couriergraph. Nếu chưa chắc thì chọn mặc định." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Bạn có muốn loại bỏ các tập tin RRD khi tẩy không?" + +#. Type: boolean +#. Description +#: ../templates:3001 +#, fuzzy +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Trình couriergraph lưu cãc tập tin cơ sở dữ liệu dưới «/var/lib/" +"couriergraph». Bạn có muốn xóa bỏ thư mục này hoàn thành khi tẩy gói tin này " +"không?" --- couriergraph-0.25.orig/debian/po/it.po +++ couriergraph-0.25/debian/po/it.po @@ -0,0 +1,85 @@ +# 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. +# Italian translation of couriergraph debconf messages +# Copyright (C) 2012 couriergraph package copyright holder +# This file is distributed under the same license as the couriergraph package. +# Beatrice Torracca , 2012. +msgid "" +msgstr "" +"Project-Id-Version: couriergraph 0.25-4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2012-02-12 15:07+0200\n" +"Last-Translator: Beatrice Torracca \n" +"Language-Team: debian-l10n-italian\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should CourierGraph start on boot?" +msgstr "Eseguire CourierGraph all'avvio del sistema?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"CourierGraph può essere eseguito come demone all'avvio del sistema. Poi " +"monitorerà i cambiamenti ai file di log della posta. Questa è la " +"configurazione raccomandata." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"L'altra possibilità è di invocare couriergraph.pl a mano con l'opzione -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "File di log che couriergraph deve usare:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Inserire il file di log che deve essere usato per creare i database per " +"couriergraph. Se non si è sicuri, lasciare il valore predefinito." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Rimuovere i file RRD al momento dell'eliminazione del pacchetto?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph tiene i suoi file di database in /var/lib/couriergraph. " +"Indicare se questa directory debba o meno essere completamente rimossa al " +"momento dell'eliminazione del pacchetto." --- couriergraph-0.25.orig/debian/po/pa.po +++ couriergraph-0.25/debian/po/pa.po @@ -0,0 +1,82 @@ +# translation of templates.pot_[lNH4Qa].po to Punjabi +# +# 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. +# +# A S Alam , 2007. +msgid "" +msgstr "" +"Project-Id-Version: templates.pot_[lNH4Qa]\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-01-22 15:18+0530\n" +"Last-Translator: A S Alam \n" +"Language-Team: Punjabi \n" +"Language: pa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should CourierGraph start on boot?" +msgstr "ਕੀ ਕੋਰੀਅਰਗਰਾਫ਼ ਬੂਟ ਕਰਨ ਸਮੇਂ ਚਲਾਉਣਾ ਹੈ?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"ਕੋਰੀਅਰਗਰਾਫ਼ ਬੂਟ ਕਰਨ ਸਮੇਂ ਡੈਮਨ ਦੀ ਤਰ੍ਹਾਂ ਚੱਲ ਸਕਦਾ ਹੈ। ਤਦ ਇਹ ਤੁਹਾਡੀ ਮੇਲ ਲਾਗਫਾਇਲ ਵਿੱਚ ਬਦਲਾਅ " +"ਦੀ ਨਿਗਰਾਨੀ ਕਰੇਗਾ। ਇਹ ਸਿਫ਼ਾਰਸ਼ੀ ਹੈ।" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "ਦੂਜਾ ਢੰਗ ਹੈ ਕਿ couriergraph.pl ਨੂੰ -l ਮੁੱਲ ਨਾਲ ਖੁਦ ਚਲਾਓ।" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "ਕੋਰੀਅਰਗਰਾਫ਼ ਵਲੋਂ ਵਰਤੀ ਜਾਂਦੀ ਲਾਗ ਫਾਇਲ:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"ਲਾਗਫਾਇਲ ਦਿਓ, ਜੋ ਕਿ ਕੋਰੀਅਰਗਰਾਫ਼ ਵਲੋਂ ਡਾਟਾਬੇਸ ਵਾਸਤੇ ਬਣਾਈ ਜਾਵੇਗੀ। ਜੇ ਭਰੋਸਾ ਨਾ ਹੋਵੇ ਤਾਂ ਮੂਲ ਹੀ " +"ਰਹਿਣ ਦਿਓ।" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "ਕੀ RRD ਫਾਇਲਾਂ ਨੂੰ ਹਟਾਉਣਾ ਹੈ?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"ਕੋਰੀਅਰਗਰਾਫ਼ ਆਪਣੀਆਂ ਡਾਟਾਬੇਸ ਫਾਇਲਾਂ ਨੂੰ /var/lib/couriergraph ਵਿੱਚ ਰੱਖਦਾ ਹੈ। ਦੱਸੋ ਕਿ ਹਟਾਉਣ " +"ਸਮੇਂ ਕੀ ਇਹ ਡਾਇਰੈਕਟਰੀ ਹਟਾਈ ਜਾਵੇ ਕਿ ਨਾ।" --- couriergraph-0.25.orig/debian/po/es.po +++ couriergraph-0.25/debian/po/es.po @@ -0,0 +1,85 @@ +# +# 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: CourierGraph 0.23\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2006-05-12 03:44+0200\n" +"Last-Translator: Jose Luis Tallon \n" +"Language-Team: Spanish \n" +"Language: es\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 CourierGraph start on boot?" +msgstr "¿Debe lanzarse CourierGraph durante el arranque?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"CourierGraph puede lanzarse automáticamente durante el arranque. A partir de " +"ese momento, monitorizará el fichero de registro indicado. Esta es la opción " +"recomendada." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"La otra posibilidad es lanzar 'couriergraph.pl' manualmente, opcionalmente " +"con el parámetro -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Fichero de registro a utilizarse:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Introduzca el nombre del fichero de registro que deberá usarse para " +"actualizar la base de datos. Si no está seguro, acepte el valor que se le " +"propone." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "¿Eliminar la base de datos(RRD) durante el purgado del paquete?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph guarda sus bases de datos en el directorio /var/lib/" +"couriergraph. Indique si debe eliminarse completamente este directorio " +"cuando se purgue el paquete." --- couriergraph-0.25.orig/debian/po/ja.po +++ couriergraph-0.25/debian/po/ja.po @@ -0,0 +1,83 @@ +# +# 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: couriergraph 0.25-1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2006-10-15 13:52+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"Language: ja\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 CourierGraph start on boot?" +msgstr "システム起動時に CourierGraph を開始しますか?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"CourierGraph はシステム起動時にデーモンとして開始できます。これを行うと、メー" +"ルログファイルの変更を監視してくれます。これがお勧めです。" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"他の方法としては、-l パラメータ付きで couriergraph.pl を手動で呼び出すという" +"のがあります。" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "couriergraph が使うログファイル:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"couriergraph 用データベースを作成するため、データ取得元のログファイル名を入力" +"してください。わからない場合は、デフォルトのままにしておいてください。" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "purge する際に RRD ファイルを削除しますか?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"CourierGraph は /var/lib/couriergraph にデータベースを保持しています。この" +"ディレクトリを purge の際に完全に削除するかどうかを決めてください。" --- couriergraph-0.25.orig/debian/po/cs.po +++ couriergraph-0.25/debian/po/cs.po @@ -0,0 +1,69 @@ +# Czech translation of couriergraph templates +# +msgid "" +msgstr "" +"Project-Id-Version: couriergraph 0.25-1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2006-10-06 20:34+0200\n" +"Last-Translator: Martin Sin \n" +"Language-Team: Czech \n" +"Language: cs\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 CourierGraph start on boot?" +msgstr "Má se CourierGraph spustit při startu?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Couriergraph se může spustit při startu jako daemon. Pak bude monitorovat " +"soubor s logem pošty. Toto je doporučeno." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "Další možností je spustit couriergraph.pl ručně s parametrem -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Soubor s logem použitý pro couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Vložte jméno souboru, který se má použít pro vytvoření databáze pro " +"couriergraph. Pokud si nejste jistí, nechte implicitní hodnotu." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Odstranit soubory RRD při čištění?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph uchovává databázové soubory v /var/lib/couriergraph. Vyberte " +"si, zda mám smazat celý adresář při odstranění balíčku nebo ne." --- couriergraph-0.25.orig/debian/po/templates.pot +++ couriergraph-0.25/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: 2007-01-15 23:41+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 CourierGraph start on boot?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" --- couriergraph-0.25.orig/debian/po/de.po +++ couriergraph-0.25/debian/po/de.po @@ -0,0 +1,75 @@ +# Translation of couriergraph debconf templates to German +# Copyright (C) Helge Kreutzmann , 2007. +# This file is distributed under the same license as the couriergraph package. +# +msgid "" +msgstr "" +"Project-Id-Version: couriergraph\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-01-22 19:28+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: German \n" +"Language: de\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 CourierGraph start on boot?" +msgstr "Soll CourierGraph beim Booten gestartet werden?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Couriergraph kann zum Bootzeitpunkt als Daemon gestartet werden. Es wird " +"dann Ihre E-Mail-Logdateien auf Änderungen überwachen. Dies wird empfohlen." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "" +"Die andere Methode besteht darin, couriergraph.pl händisch mit dem »-l«-" +"Parameter aufzurufen." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Logdatei, die von Couriergraph verwendet werden soll:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Geben Sie die Logdatei ein, die verwendet werden soll, um die Datenbank für " +"Couriergraph zu erstellen. Falls Sie sich unsicher sind, verwenden Sie die " +"Standardeinstellung." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "RRD-Dateien beim vollständigen Löschen entfernen?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph behält seine Datenbankdateien unter /var/lib/couriergraph. " +"Geben Sie an, ob dieses Verzeichnis komplett entfernt werden soll oder " +"nicht, wenn Sie das Paket vollständig löschen (purge)." --- couriergraph-0.25.orig/debian/po/ru.po +++ couriergraph-0.25/debian/po/ru.po @@ -0,0 +1,85 @@ +# translation of couriergraph_0.25-1.1_debconf_ru.po to Russian +# +# 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. +# +# Yuri Kozlov , 2007. +msgid "" +msgstr "" +"Project-Id-Version: 0.25-1.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-01-15 23:41+0100\n" +"PO-Revision-Date: 2007-01-22 22:19+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should CourierGraph start on boot?" +msgstr "Запускать CourierGraph при загрузке компьютера?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Couriergraph can start on boot time as a daemon. Then it will monitor your " +"mail logfile for changes. This is recommended." +msgstr "" +"Couriergraph можно запускать при загрузке компьютера в режиме демона. Он " +"сразу начнёт отслеживать изменения в файлах протокола работы почты. Этот " +"режим рекомендуется." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The other method is to call couriergraph.pl by hand with the -l parameter." +msgstr "Также можно запускать couriergraph.pl вручную с параметром -l." + +#. Type: string +#. Description +#: ../templates:2001 +msgid "Logfile to be used by couriergraph:" +msgstr "Файл протокола, используемый couriergraph:" + +#. Type: string +#. Description +#: ../templates:2001 +msgid "" +"Enter the logfile which should be used to create the databases for " +"couriergraph. If unsure, leave default." +msgstr "" +"Введите файл протокола, который должен быть использован при создании баз " +"данных для couriergraph. Если не уверены в ответе, оставьте значение по " +"умолчанию." + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "Remove RRD files on purge?" +msgstr "Удалять файлы RRD при вычистке?" + +#. Type: boolean +#. Description +#: ../templates:3001 +msgid "" +"Couriergraph keeps its database files under /var/lib/couriergraph. State " +"whether this directory should be removed completely on purge or not." +msgstr "" +"Couriergraph хранит свои файлы баз данных в каталоге /var/lib/couriergraph. " +"Укажите, нужно ли удалять этот каталог при полной вычистке или нет." --- couriergraph-0.25.orig/debian/patches/couriergraph_cgi.patch +++ couriergraph-0.25/debian/patches/couriergraph_cgi.patch @@ -0,0 +1,52 @@ +--- couriergraph-0.23.orig/couriergraph.cgi ++++ couriergraph-0.23/couriergraph.cgi +@@ -17,9 +17,8 @@ + my $points_per_sample = 3; + my $ypoints = 150; + my $ypoints_err = 80; +-my $rrd = '/etc/postfix/couriergraph.rrd'; # path to where the RRD database is +-my $rrd_virus = '/etc/postfix/mailgraph_virus.rrd'; # path to where the Virus RRD database is +-my $tmp_dir = '/tmp/couriergraph'; # temporary directory where to store the images ++my $rrd = '/var/lib/couriergraph/couriergraph.rrd'; # path to where the RRD database is ++my $tmp_dir = '/var/cache/couriergraph'; # temporary directory where to store the images + + my @graphs = ( + { title => 'Day Graph', seconds => 3600*24, }, +@@ -124,8 +123,8 @@ + print "

Courier Login Statistics for $host

\n"; + for my $n (0..$#graphs) { + print "

$graphs[$n]{title}

\n"; +- print "

\"couriergraph\"\n"; +- print "

\"couriergraph\"\n"; ++ print "

\"couriergraph\"\n"; ++ print "

\"couriergraph\"\n"; + } + + print < + + +- ++ + FOOTER + } + +@@ -145,7 +144,7 @@ + { + my $file = shift; + -r $file or do { +- print "Content-Type: text/plain\n\nERROR: can't find $file\n"; ++ print "Content-type: text/plain\n\nERROR: can't find $file\n"; + exit 1; + }; + +@@ -163,7 +162,7 @@ + my $uri = $ENV{REQUEST_URI}; + $uri =~ s/\/[^\/]+$//; + $uri =~ s/\//,/g; +- $uri =~ s/\~/tilde,/g; ++ $uri =~ s/(\~|\%7E)/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}";