--- mysqmail-0.4.9.orig/debian/mysqmail-qmail-logger.init
+++ mysqmail-0.4.9/debian/mysqmail-qmail-logger.init
@@ -0,0 +1,70 @@
+#!/bin/sh
+
+### BEGIN INIT INFO
+# Provides:          mysqmail-qmail-logger
+# Required-Start:    $remote_fs $syslog
+# Required-Stop:     $remote_fs $syslog
+# Should-Start:      mysql
+# Should-Stop:       mysql
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: A MySQL traffic logger for the pure-ftpd transfer.log
+# Description:       This is a (very small) daemon will log all pure-ftpd traffic
+#                    to SQL, splitting the information by domains and
+#                    users so it's then very easy to count all the ftp traffic for
+#                    a given domain name in real time.
+### END INIT INFO
+
+PATH=$PATH:/bin:/usr/bin:/usr/sbin
+DESC="MySQMail qmail logger"
+NAME=mysqmail-qmail-logger
+DAEMON=/usr/sbin/${NAME}
+PID_FILE=/var/run/${NAME}.pid
+PATH_CONF_FILE=/etc/mysqmail.conf
+
+if ! [ -f "${PATH_CONF_FILE}" ] ; then
+	echo "${PATH_CONF_FILE} not present: exiting silently"
+	exit 0
+fi
+
+if [ ! -x ${DAEMON} ] ; then
+	echo "${DAEMON} not executable or not present!"
+	exit 1
+fi
+
+. /lib/lsb/init-functions
+
+RET=0
+case "$1" in
+start)
+	if [ ! -f ${PID_FILE} ] ; then
+		log_daemon_msg "Starting ${DESC}" "${NAME}"
+		start-stop-daemon -S --quiet -p ${PID_FILE} --exec ${DAEMON}
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} already exists: not starting ${DAEMON}"
+	fi
+	exit ${RET}
+;;
+stop)
+	if [ -f ${PID_FILE} ] ; then
+		log_daemon_msg "Stopping ${DESC}" "${NAME}"
+		start-stop-daemon -K --quiet -p ${PID_FILE}
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} doesn't exist: not stoping ${DAEMON}"
+	fi
+;;
+restart | reload | force-reload)
+	$0 stop
+	sleep 2
+	$0 start
+;;
+*)
+	echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
+	exit 1
+esac
+
+exit 0
--- mysqmail-0.4.9.orig/debian/mysqmail-pure-ftpd-logger.manpages
+++ mysqmail-0.4.9/debian/mysqmail-pure-ftpd-logger.manpages
@@ -0,0 +1 @@
+doc/mysqmail-pure-ftpd-logger.8
--- mysqmail-0.4.9.orig/debian/mysqmail-dovecot-logger.manpages
+++ mysqmail-0.4.9/debian/mysqmail-dovecot-logger.manpages
@@ -0,0 +1 @@
+doc/mysqmail-dovecot-logger.8
--- mysqmail-0.4.9.orig/debian/mysqmail-dovecot-logger.init
+++ mysqmail-0.4.9/debian/mysqmail-dovecot-logger.init
@@ -0,0 +1,71 @@
+#!/bin/sh
+
+### BEGIN INIT INFO
+# Provides:          mysqmail-dovecot-logger
+# Required-Start:    $remote_fs $syslog
+# Required-Stop:     $remote_fs $syslog
+# Should-Start:      mysql
+# Should-Stop:       mysql
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: MySQL accouting for courier-imap and courier-pop
+# Description:       This is a (ver small) traffic logger for the C courier-imap,
+#                    courier-imaps, courier-pop and courier-pops daemons to SQL,
+#                    splitting the information by domains and users, so it's then very
+#                    easy to count all the pop and imap traffic for a given
+#                    domain name.
+### END INIT INFO
+
+PATH=$PATH:/bin:/usr/bin:/usr/sbin
+DESC="MySQMail dovecot logger"
+NAME=mysqmail-dovecot-logger
+DAEMON=/usr/sbin/${NAME}
+PID_FILE=/var/run/${NAME}.pid
+PATH_CONF_FILE=/etc/mysqmail.conf
+
+if ! [ -f "${PATH_CONF_FILE}" ] ; then
+	echo "${PATH_CONF_FILE} not present: exiting silently"
+	exit 0
+fi
+
+if [ ! -x ${DAEMON} ] ; then
+	echo "${DAEMON} not executable or not present!"
+	exit 1
+fi
+
+. /lib/lsb/init-functions
+
+RET=0
+case "$1" in
+start)
+	if [ ! -f ${PID_FILE} ] ; then
+		log_daemon_msg "Starting ${DESC}" "${NAME}"
+		start-stop-daemon -S --quiet -p ${PID_FILE} --exec ${DAEMON}
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} already exists: not starting ${DAEMON}"
+	fi
+	exit ${RET}
+;;
+stop)
+	if [ -f ${PID_FILE} ] ; then
+		log_daemon_msg "Stopping ${DESC}" "${NAME}"
+		start-stop-daemon -K --quiet -p ${PID_FILE}
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} doesn't exist: not stoping ${DAEMON}"
+	fi
+;;
+restart|reload|force-reload)
+	$0 stop
+	$0 start
+;;
+*)
+	echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
+	exit 1
+	;;
+esac
+
+exit 0
--- mysqmail-0.4.9.orig/debian/mysqmail-postfix-logger.manpages
+++ mysqmail-0.4.9/debian/mysqmail-postfix-logger.manpages
@@ -0,0 +1 @@
+doc/mysqmail-postfix-logger.8
--- mysqmail-0.4.9.orig/debian/copyright
+++ mysqmail-0.4.9/debian/copyright
@@ -0,0 +1,32 @@
+This package was debianized by Thomas Goirand <thomas@goirand.fr> on
+Sat,  9 Apr 2005 21:54:10 +0200.
+
+It was downloaded from:
+git clone http://git.gplhost.com/mysqmail.git
+
+Upstream Author:
+	Thomas Goirand <thomas@goirand.fr>
+	Damien Mascord <tusker@tusker.org>
+
+Files: *
+Copyright: (C) 2001-2008, Thomas Goirand <thomas@goirand.fr>
+	(C) 2001-2008, Damien Mascord <tusker@tusker.org>
+	(C) 2003-2008, GPLHost LLC <info@gplhost.com>
+License: LGPL-2
+
+	This library is free software; you can redistribute it and/or
+	modify it under the terms of the GNU Lesser General Public
+	License as published by the Free Software Foundation; either
+	version 2 of the License, or (at your option) any later version.
+
+	This library is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+	Lesser General Public License for more details.
+
+	You should have received a copy of the GNU Lesser General Public
+	License along with this library; if not, write to the Free Software
+	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU Lesser General Public
+License (LGPL) may be found in /usr/share/common-licenses/LGPL.
--- mysqmail-0.4.9.orig/debian/mysqmail-courier-logger.links
+++ mysqmail-0.4.9/debian/mysqmail-courier-logger.links
@@ -0,0 +1 @@
+/usr/share/doc/mysqmail /usr/share/doc/mysqmail-courier-logger
--- mysqmail-0.4.9.orig/debian/mysqmail.postrm
+++ mysqmail-0.4.9/debian/mysqmail.postrm
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+# Remove configuration if package is being purged
+if [ "$1" = "purge" ]; then
+	rm -f /etc/mysqmail.conf
+fi
+
+#DEBHELPER#
+
+exit 0
--- mysqmail-0.4.9.orig/debian/compat
+++ mysqmail-0.4.9/debian/compat
@@ -0,0 +1 @@
+5
--- mysqmail-0.4.9.orig/debian/mysqmail-pure-ftpd-logger.links
+++ mysqmail-0.4.9/debian/mysqmail-pure-ftpd-logger.links
@@ -0,0 +1 @@
+/usr/share/doc/mysqmail /usr/share/doc/mysqmail-pure-ftpd-logger
--- mysqmail-0.4.9.orig/debian/control
+++ mysqmail-0.4.9/debian/control
@@ -0,0 +1,65 @@
+Source: mysqmail
+Section: mail
+Priority: extra
+Maintainer: Thomas Goirand <zigo@debian.org>
+Build-Depends: debhelper (>= 5), po-debconf, libdotconf-dev, libmysqlclient-dev | libmysqlclient15-dev
+Standards-Version: 3.8.3
+Dm-Upload-Allowed: yes
+Vcs-Browser: http://git.gplhost.com/gitweb/?p=mysqmail.git
+Vcs-Git: http://git.gplhost.com/mysqmail.git
+Homepage: http://www.gplhost.com/software-mysqmail.html
+
+Package: mysqmail
+Architecture: all
+Depends: ${misc:Depends}, debconf, libdotconf1.0, ${shlibs:Depends}
+Description: real-time logging system in MySQL
+ MySQMail is a set of tiny daemon loggers for mail and FTP servers that
+ save traffic information in a MySQL database. The information is split
+ by domain and by user so that it's easy to measure all the traffic for
+ a given domain name in real time.
+ .
+ This package provides the configuration infrastructure.
+
+Package: mysqmail-pure-ftpd-logger
+Architecture: any
+Depends: ${misc:Depends}, libdotconf1.0, lsb-base, pure-ftpd | pure-ftpd-mysql, mysqmail, ${shlibs:Depends}
+Description: real-time logging system in MySQL - Pure-FTPd traffic-logger
+ MySQMail is a set of tiny daemon loggers for mail and FTP servers that
+ save traffic information in a MySQL database. The information is split
+ by domain and by user so that it's easy to measure all the traffic for
+ a given domain name in real time.
+ .
+ This package provides a logger for FTP traffic handled by Pure-FTPd.
+
+Package: mysqmail-postfix-logger
+Architecture: any
+Depends: ${misc:Depends}, libdotconf1.0, lsb-base, postfix, mysqmail, ${shlibs:Depends}
+Description: real-time logging system in MySQL - Postfix traffic-logger
+ MySQMail is a set of tiny daemon loggers for mail and FTP servers that
+ save traffic information in a MySQL database. The information is split
+ by domain and by user so that it's easy to measure all the traffic for
+ a given domain name in real time.
+ .
+ This package provides a logger for SMTP traffic handled by Postfix.
+
+Package: mysqmail-courier-logger
+Architecture: any
+Depends: ${misc:Depends}, courier-imap-ssl | courier-imap | courier-pop | courier-pop-ssl, libdotconf1.0, lsb-base, mysqmail, ${shlibs:Depends}
+Description: real-time logging system in MySQL - Courier traffic-logger
+ MySQMail is a set of tiny daemon loggers for mail and FTP servers that
+ save traffic information in a MySQL database. The information is split
+ by domain and by user so that it's easy to measure all the traffic for
+ a given domain name in real time.
+ .
+ This package provides a logger for POP/IMAP traffic handled by Courier.
+
+Package: mysqmail-dovecot-logger
+Architecture: any
+Depends: ${misc:Depends}, dovecot-pop3d, dovecot-imapd, libdotconf1.0, lsb-base, mysqmail, ${shlibs:Depends}
+Description: real-time logging system in MySQL - Dovecot traffic-logger
+ MySQMail is a set of tiny daemon loggers for mail and FTP servers that
+ save traffic information in a MySQL database. The information is split
+ by domain and by user so that it's easy to measure all the traffic for
+ a given domain name in real time.
+ .
+ This package provides a logger for POP/IMAP traffic handled by Dovecot.
--- mysqmail-0.4.9.orig/debian/mysqmail-pure-ftpd-logger.init
+++ mysqmail-0.4.9/debian/mysqmail-pure-ftpd-logger.init
@@ -0,0 +1,70 @@
+#!/bin/sh
+
+### BEGIN INIT INFO
+# Provides:          mysqmail-pure-ftpd-logger
+# Required-Start:    $remote_fs $syslog
+# Required-Stop:     $remote_fs $syslog
+# Should-Start:      mysql
+# Should-Stop:       mysql
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: A MySQL traffic logger for the pure-ftpd transfer.log
+# Description:       This is a (very small) daemon will log all pure-ftpd traffic
+#                    to SQL, splitting the information by domains and
+#                    users so it's then very easy to count all the ftp traffic for
+#                    a given domain name in real time.
+### END INIT INFO
+
+PATH=$PATH:/bin:/usr/bin:/usr/sbin
+DESC="MySQMail pure-ftpd logger"
+NAME=mysqmail-pure-ftpd-logger
+DAEMON=/usr/sbin/${NAME}
+PID_FILE=/var/run/${NAME}.pid
+PATH_CONF_FILE=/etc/mysqmail.conf
+
+if ! [ -f "${PATH_CONF_FILE}" ] ; then
+	echo "${PATH_CONF_FILE} not present: exiting silently"
+	exit 0
+fi
+
+if [ ! -x ${DAEMON} ] ; then
+	echo "${DAEMON} not executable or not present!"
+	exit 1
+fi
+
+. /lib/lsb/init-functions
+
+RET=0
+case "$1" in
+start)
+	if [ ! -f ${PID_FILE} ] ; then
+		log_daemon_msg "Starting ${DESC}" "${NAME}"
+		start-stop-daemon -S --quiet -p ${PID_FILE} --exec "${DAEMON}"
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} already exists: not starting ${DAEMON}"
+	fi
+	exit ${RET}
+;;
+stop)
+	if [ -f ${PID_FILE} ] ; then
+		log_daemon_msg "Stopping ${DESC}" "${NAME}"
+		start-stop-daemon -K --quiet -p ${PID_FILE}
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} doesn't exist: not stoping ${DAEMON}"
+	fi
+;;
+restart | reload | force-reload)
+	$0 stop
+	sleep 2
+	$0 start
+;;
+*)
+	echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
+	exit 1
+esac
+
+exit 0
--- mysqmail-0.4.9.orig/debian/mysqmail-courier-logger.init
+++ mysqmail-0.4.9/debian/mysqmail-courier-logger.init
@@ -0,0 +1,71 @@
+#!/bin/sh
+
+### BEGIN INIT INFO
+# Provides:          mysqmail-courier-logger
+# Required-Start:    $remote_fs $syslog
+# Required-Stop:     $remote_fs $syslog
+# Should-Start:      mysql
+# Should-Stop:       mysql
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: MySQL accouting for courier-imap and courier-pop
+# Description:       This is a (ver small) traffic logger for the C courier-imap,
+#                    courier-imaps, courier-pop and courier-pops daemons to SQL,
+#                    splitting the information by domains and users, so it's then very
+#                    easy to count all the pop and imap traffic for a given
+#                    domain name.
+### END INIT INFO
+
+PATH=$PATH:/bin:/usr/bin:/usr/sbin
+DESC="MySQMail courier logger"
+NAME=mysqmail-courier-logger
+DAEMON=/usr/sbin/${NAME}
+PID_FILE=/var/run/${NAME}.pid
+PATH_CONF_FILE=/etc/mysqmail.conf
+
+if ! [ -f "${PATH_CONF_FILE}" ] ; then
+	echo "${PATH_CONF_FILE} not present: exiting silently"
+	exit 0
+fi
+
+if [ ! -x ${DAEMON} ] ; then
+	echo "${DAEMON} not executable or not present!"
+	exit 1
+fi
+
+. /lib/lsb/init-functions
+
+RET=0
+case "$1" in
+start)
+	if [ ! -f ${PID_FILE} ] ; then
+		log_daemon_msg "Starting ${DESC}" "${NAME}"
+		start-stop-daemon -S --quiet -p ${PID_FILE} --exec ${DAEMON}
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} already exists: not starting ${DAEMON}"
+	fi
+	exit ${RET}
+;;
+stop)
+	if [ -f ${PID_FILE} ] ; then
+		log_daemon_msg "Stopping ${DESC}" "${NAME}"
+		start-stop-daemon -K --quiet -p ${PID_FILE}
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} doesn't exist: not stoping ${DAEMON}"
+	fi
+;;
+restart|reload|force-reload)
+	$0 stop
+	$0 start
+;;
+*)
+	echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
+	exit 1
+	;;
+esac
+
+exit 0
--- mysqmail-0.4.9.orig/debian/mysqmail.config
+++ mysqmail-0.4.9/debian/mysqmail.config
@@ -0,0 +1,58 @@
+#!/bin/sh
+
+set -e
+
+. /usr/share/debconf/confmodule
+
+db_version 2.0
+
+db_input medium dtc/conf_mysqlautoconfig || true
+db_get mysqmail/conf_mysqlautoconfig
+
+if [ -z "${RET}" -o "${RET}" = "no" -o "${RET}" = "false" ] ; then
+	# Read values from the conf file, and send them in debconf
+	if [ -f /etc/mysqmail.conf ] ; then
+		conf_mysql_host=`grep mysql_hostname /etc/mysqmail.conf | awk '{print $2}'`
+		conf_mysql_login=`grep mysql_user /etc/mysqmail.conf | awk '{print $2}'`
+		conf_mysql_pass=`grep mysql_pass /etc/mysqmail.conf | awk '{print $2}'`
+		conf_mysql_db=`grep mysql_db /etc/mysqmail.conf | awk '{print $2}'`
+	fi
+
+	if [ -z ${conf_mysql_host} ] ; then
+		db_set mysqmail/conf_mysqlhost ${conf_mysql_host}
+	fi
+	if [ -z ${conf_mysql_login} ] ; then
+		db_set mysqmail/conf_mysqllogin ${conf_mysql_login}
+	fi
+	if [ -z ${conf_mysql_pass} ] ; then
+		db_set mysqmail/conf_mysqlpass ${conf_mysql_pass}
+	fi
+	if [ -z ${conf_mysql_db} ] ; then
+		db_set mysqmail/conf_mysqldb
+	fi
+
+	# Ask questions about how to connect to MySQL
+	db_input high mysqmail/conf_mysqlhost
+	db_input high mysqmail/conf_mysqllogin
+	db_input high mysqmail/conf_mysqlpass
+	db_input high mysqmail/conf_mysqldb
+else
+	if ! [ -f /var/lib/dtc/saved_install_config ] ; then
+		echo "The postinstallation script of MySQMail couldn't find /var/lib/dtc/saved_install_config"
+		echo "you will need to run dpkg-reconfigure mysqmail once DTC is installed in order to have"
+		echo "mysqmail working. I will exit silently but you MUST do the above."
+		exit 0
+	fi
+	# Read values from the DTC's config
+	. /var/lib/dtc/saved_install_config
+	db_set mysqmail/conf_mysqlhost ${conf_mysql_host}
+	db_set mysqmail/conf_mysqllogin ${conf_mysql_login}
+	db_set mysqmail/conf_mysqlpass ${conf_mysql_pass}
+	db_set mysqmail/conf_mysqldb ${conf_mysql_db}
+fi
+
+db_go
+
+#DEBHELPER#
+
+exit 0;
--- mysqmail-0.4.9.orig/debian/rules
+++ mysqmail-0.4.9/debian/rules
@@ -0,0 +1,64 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	touch $@
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(MAKE)
+	$(MAKE) strip
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	$(MAKE) clean
+
+	dh_clean 
+
+	# As per advice from Christian Perrier
+	debconf-updatepo
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	install -D -m 0755 mysqmail-courier-logger   debian/mysqmail-courier-logger/usr/sbin/mysqmail-courier-logger
+	install -D -m 0755 mysqmail-postfix-logger   debian/mysqmail-postfix-logger/usr/sbin/mysqmail-postfix-logger
+	install -D -m 0755 mysqmail-pure-ftpd-logger debian/mysqmail-pure-ftpd-logger/usr/sbin/mysqmail-pure-ftpd-logger
+	install -D -m 0755 mysqmail-dovecot-logger   debian/mysqmail-dovecot-logger/usr/sbin/mysqmail-dovecot-logger
+
+# 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_link
+	dh_installchangelogs doc/changelog
+	dh_installdocs
+	dh_installmenu
+	dh_installdebconf	
+	dh_installinit
+	dh_installman
+	dh_strip
+	dh_compress
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- mysqmail-0.4.9.orig/debian/mysqmail.templates
+++ mysqmail-0.4.9/debian/mysqmail.templates
@@ -0,0 +1,42 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-english@lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
+Template: mysqmail/conf_mysqlautoconfig
+Type: boolean
+Default: true
+_Description: Reuse MySQL authentication information from DTC?
+ MySQMail can use the same MySQL credentials as DTC.
+ .
+ If you choose this option, you will not be prompted for a login
+ and password to configure MySQMail.
+
+Template: mysqmail/conf_mysqlhost
+Type: string
+Default: localhost
+_Description: MySQL hostname:
+ Please enter the hostname or IP address of the MySQL server for MySQMail.
+
+Template: mysqmail/conf_mysqllogin
+Type: string
+Default: root
+_Description: MySQL login:
+ Please enter the MySQL login needed to create (and later, access) the MySQMail
+ database.
+
+Template: mysqmail/conf_mysqlpass
+Type: password
+_Description: MySQL password:
+ Please enter the MySQL password needed to create (and later, access) the MySQMail
+ database.
+
+Template: mysqmail/conf_mysqldb
+Type: string
+Default: dtc
+_Description: MySQL database name:
+ Please enter the name of the database where MySQMail will store its data.
--- mysqmail-0.4.9.orig/debian/changelog
+++ mysqmail-0.4.9/debian/changelog
@@ -0,0 +1,107 @@
+mysqmail (0.4.9-7) unstable; urgency=low
+
+  * Fixed the name of the PID file in mysqmail-dovecot-logger so that it
+    matches the one of the init.d script (Closes: #599569).
+  * Fixed the domain name string so that it logs correcly dovecot traffic
+    (previously "):" was happened to the domain name) (Closes: #599570).
+
+ -- Thomas Goirand <zigo@debian.org>  Mon, 11 Oct 2010 11:43:09 +0000
+
+mysqmail (0.4.9-6) unstable; urgency=low
+
+  * Added in debian/*.init some Sould-Start: mysql, as otherwise, mysqmail
+    starts before mysqld.
+
+ -- Thomas Goirand <zigo@debian.org>  Sat, 11 Sep 2010 04:11:53 +0000
+
+mysqmail (0.4.9-5) unstable; urgency=low
+
+  * Reverted Danish debconf translation that wasn't for this package.
+
+ -- Thomas Goirand <zigo@debian.org>  Sat, 11 Sep 2010 04:01:26 +0000
+
+mysqmail (0.4.9-4) unstable; urgency=medium
+
+  * Now using my @debian.org email address.
+  * Apply patch from Marco Rodrigues to fix handling of configuration file
+    in maintainer scripts (Closes: #591677).
+  * Urgency medium due to RC bug fix
+  * Added Danish debconf translation thanks to Joe Dalton
+    <joedalton2@yahoo.dk> (Closes: #583972).
+
+ -- Thomas Goirand <zigo@debian.org>  Sat, 11 Sep 2010 03:38:01 +0000
+
+mysqmail (0.4.9-3) unstable; urgency=low
+
+  * Maintainer scripts are now also working if DTC is not configured yet
+    (Closes: #574227).
+
+ -- Thomas Goirand <thomas@goirand.fr>  Wed, 24 Mar 2010 13:32:33 +0800
+
+mysqmail (0.4.9-2) unstable; urgency=low
+
+  * Now exiting silently if DTC is not fully configured (Closes: #566568).
+  * Swedish update for the debconf template thanks to Martin Bagge
+    <brother@bsnet.se> (Closes: #562927).
+  * Added Italian debconf translation, thanks to Vincenzo Campanella
+    <vinz65@gmail.com> (Closes: #556115).
+
+ -- Thomas Goirand <thomas@goirand.fr>  Thu, 04 Mar 2010 15:09:45 +0800
+
+mysqmail (0.4.9-1) unstable; urgency=low
+
+  * New upstream version including some corrections to the man pages.
+  * New Debian release including all the translation work. Special thanks to
+    Christian Perrier for all his translation efforts in having all Debian in
+    general, and this package today, translated in many language. Debian
+    wouldn't be what it is now without people like Christian Perrier.
+  * Added Italian debconf translation thanks Luca Monducci <luca.mo@tiscali.it>
+    (Closes: #552218).
+  * Added German debconf translation thanks to Chris Leick <c.leick@vollbio.de>
+    (Closes: #550827).
+  * Added Japanese debconf translation thanks to Hideki Yamane from the
+    Debian-JP team <henrich@debian.or.jp> (Closes: #551021).
+  * Added French debconf translation thanks to Christian Perrier
+    <bubulle@debian.org> (Closes: #550813).
+  * Added Russian debconf translation thanks to Yuri Kozlov
+    <yuray@komyakino.ru> (Closes: #550551).
+  * Added Spanish debconf translation thanks to Francisco Javier Cuadrado
+    <fcocuadrado@gmail.com> (Closes: #550501).
+  * Added Finish debconf translation thanks to Esko Arajärvi <edu@iki.fi>
+    (Closes: #549969).
+  * Added Czech debconf translation thanks to Martin Šín <martin.sin@zshk.cz>
+    (Closes: #549301).
+  * Added Vietnamese debconf translation thanks to Clytie Siddall
+    <clytie@riverland.net.au> (Closes: #548993).
+  * Added Portuguese debconf translation thanks to Rui Branco of the Traduz
+    (Portuguese Translation Team) <traduz@debianpt.org> (Closes: #548830).
+  * Added Swedish debconf translation thanks to Martin Bagge <brother@bsnet.se>
+    (Closes: #545735).
+  * Bumped Standards-Version.
+
+ -- Thomas Goirand <thomas@goirand.fr>  Fri, 16 Oct 2009 04:05:05 +0800
+
+mysqmail (0.4.8-2) unstable; urgency=low
+
+  * New templates and debian/control reviewed by the language team, thanks a
+    lot to Christian Perrier <bubulle@debian.org> for his endless efforts.
+    (Closes: #547141, #548697)
+  * Reviewed the debian/*.init for dependencies (Closes: #545897).
+
+ -- Thomas Goirand <thomas@goirand.fr>  Mon, 28 Sep 2009 17:20:57 +0800
+
+mysqmail (0.4.8-1) unstable; urgency=low
+
+  * New upstream release.
+  * Updated the debian/*.init scripts for correct dependencies (Closes: #545897).
+
+ -- Thomas Goirand <thomas@goirand.fr>  Thu, 10 Sep 2009 14:04:23 +0800
+
+mysqmail (0.4.7-1) unstable; urgency=low
+
+  * Initial Release (Closes: #537423).
+  * Fixed the 2 reasons of (very legitimate) rejection by FTP masters:
+    - Removed qmail-logger from built as qmail is not in main.
+    - Fixed conflicting debian/copyright and doc/LICENSE.
+
+ -- Thomas Goirand <thomas@goirand.fr>  Fri, 04 Sep 2009 16:14:36 +0800
--- mysqmail-0.4.9.orig/debian/mysqmail.postinst
+++ mysqmail-0.4.9/debian/mysqmail.postinst
@@ -0,0 +1,60 @@
+#!/bin/sh
+
+set -e
+
+if [ "$1" != "configure" ]; then
+    exit 0
+fi
+
+PATH_CONF_FILE=/etc/mysqmail.conf
+
+. /usr/share/debconf/confmodule
+db_version 2.0
+
+db_get mysqmail/conf_mysqlhost
+conf_mysql_host=$RET
+db_get mysqmail/conf_mysqllogin
+conf_mysql_login=$RET
+db_get mysqmail/conf_mysqlpass
+conf_mysql_pass=$RET
+db_get mysqmail/conf_mysqldb
+conf_mysql_db=$RET
+
+# Always delete the config file first.
+rm -f ${PATH_CONF_FILE}
+
+# Check debconf values.
+if [ -z "${conf_mysql_host}" -o -z "${conf_mysql_login}" -o -z "${conf_mysql_pass}" -o -z "${conf_mysql_db}" ] ; then
+	echo "MySQL debconf configuration missing: will silently exit now."
+	echo "Please do dpkg-reconfigure mysqmail once DTC is installed in"
+	echo "order to have mysqmail working."
+	exit 0
+fi
+
+# Make correct unix rights before writing the file
+touch ${PATH_CONF_FILE}
+chmod 0640 ${PATH_CONF_FILE}
+
+echo "#
+# This is the MySQmail config file, parsed using dotconf lib
+# Normaly, should be in /etc/mysqmail.conf
+#
+
+#
+# Mysql server connection stuff (self explanatory)
+# Do not edit: use dpkg-reconfigure mysqmail instead!
+#
+mysql_hostname "${conf_mysql_host}"
+mysql_user "${conf_mysql_login}"
+mysql_pass "${conf_mysql_pass}"
+mysql_db "${conf_mysql_db}"
+mysql_table_smtp_logs smtp_logs
+mysql_table_pop_access pop_access
+mysql_table_scoreboard email_accounting
+mysql_table_domain domain
+
+" >${PATH_CONF_FILE}
+
+#DEBHELPER#
+
+exit 0
--- mysqmail-0.4.9.orig/debian/watch
+++ mysqmail-0.4.9/debian/watch
@@ -0,0 +1,2 @@
+version=3
+ftp://ftp.gplhost.com/debian/pool/lenny/main/m/mysqmail/mysqmail_(.*).orig.tar.gz
--- mysqmail-0.4.9.orig/debian/mysqmail.docs
+++ mysqmail-0.4.9/debian/mysqmail.docs
@@ -0,0 +1 @@
+doc/README
--- mysqmail-0.4.9.orig/debian/mysqmail-postfix-logger.links
+++ mysqmail-0.4.9/debian/mysqmail-postfix-logger.links
@@ -0,0 +1 @@
+/usr/share/doc/mysqmail /usr/share/doc/mysqmail-postfix-logger
--- mysqmail-0.4.9.orig/debian/mysqmail-qmail-logger.links
+++ mysqmail-0.4.9/debian/mysqmail-qmail-logger.links
@@ -0,0 +1 @@
+/usr/share/doc/mysqmail /usr/share/doc/mysqmail-qmail-logger
--- mysqmail-0.4.9.orig/debian/mysqmail-dovecot-logger.links
+++ mysqmail-0.4.9/debian/mysqmail-dovecot-logger.links
@@ -0,0 +1 @@
+/usr/share/doc/mysqmail /usr/share/doc/mysqmail-dovecot-logger
--- mysqmail-0.4.9.orig/debian/mysqmail-postfix-logger.init
+++ mysqmail-0.4.9/debian/mysqmail-postfix-logger.init
@@ -0,0 +1,70 @@
+#!/bin/sh
+
+### BEGIN INIT INFO
+# Provides:          mysqmail-postfix-logger
+# Required-Start:    $remote_fs $syslog
+# Required-Stop:     $remote_fs $syslog
+# Should-Start:      mysql
+# Should-Stop:       mysql
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: A MySQL traffic logger for the Postfix SMTP
+# Description:       This is a (very small) daemon will log all SMTP traffic
+#                    to SQL, splitting the information by domains and
+#                    users for the from and to field, so it's then very
+#                    easy to count all the SMTP traffic for a given
+#                    domain name.
+### END INIT INFO
+
+PATH=$PATH:/bin:/usr/bin:/usr/sbin
+DESC="MySQMail postfix logger"
+NAME=mysqmail-postfix-logger
+DAEMON=/usr/sbin/${NAME}
+PID_FILE=/var/run/${NAME}.pid
+PATH_CONF_FILE=/etc/mysqmail.conf
+
+if ! [ -f "${PATH_CONF_FILE}" ] ; then
+	echo "${PATH_CONF_FILE} not present: exiting silently"
+	exit 0
+fi
+
+if [ ! -x ${DAEMON} ] ; then
+	echo "${DAEMON} not executable or not present!"
+	exit 1
+fi
+
+. /lib/lsb/init-functions
+
+RET=0
+case "$1" in
+start)
+	if [ ! -f ${PID_FILE} ] ; then
+		log_daemon_msg "Starting ${DESC}" "${NAME}"
+		start-stop-daemon -S --quiet -p ${PID_FILE} --exec ${DAEMON}
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} already exists: not starting ${DAEMON}"
+	fi
+	exit ${RET}
+;;
+stop)
+	if [ -f ${PID_FILE} ] ; then
+		log_daemon_msg "Stopping ${DESC}" "${NAME}"
+		start-stop-daemon -K --quiet -p ${PID_FILE}
+		RET=$?
+		log_end_msg $?
+	else
+		echo "${PID_FILE} doesn't exist: not stoping ${DAEMON}"
+	fi
+;;
+restart | reload | force-reload)
+	$0 stop
+	$0 start
+	;;
+*)
+	echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
+	exit 1
+esac
+
+exit 0
--- mysqmail-0.4.9.orig/debian/mysqmail-qmail-logger.manpages
+++ mysqmail-0.4.9/debian/mysqmail-qmail-logger.manpages
@@ -0,0 +1 @@
+doc/mysqmail-qmail-logger.8
--- mysqmail-0.4.9.orig/debian/mysqmail-courier-logger.manpages
+++ mysqmail-0.4.9/debian/mysqmail-courier-logger.manpages
@@ -0,0 +1 @@
+doc/mysqmail-courier-logger.8
--- mysqmail-0.4.9.orig/debian/po/it.po
+++ mysqmail-0.4.9/debian/po/it.po
@@ -0,0 +1,98 @@
+# ITALIAN TRANSLATION OF MYSQLMAIL'S PO-DEBCONF FILE.
+# COPYRIGHT (C) 2009 THE MYSQLMAIL'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the mysqlmail package.
+#
+# Vincenzo Campanella <vinz65@gmail.com>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: mysqlmail 0.4.7-3\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-11-13 13:08+0100\n"
+"Last-Translator: Vincenzo Campanella <vinz65@gmail.com>\n"
+"Language-Team: Italian <tp@lists.linux.it>\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "Riutilizzare le informazioni di autenticazione MySQL da DTC?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr "MySQMail può utilizzare le medesime credenziali MySQL di DTC."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Se si sceglie questa opzione non verranno richiesti nome utente e password "
+"per configurare MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "Nome dell'host MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr ""
+"Inserire il nome dell'host o l'indirizzo IP del server MySQL per MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "Login di MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Inserire il login MySQL necessario per creare (e successivamente accedere a) "
+"il database MySQMail."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "Password MySQL:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Inserire la password necessaria per creare (e successivamente accedere a) il "
+"database MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "Nome del database MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr "Inserire il nome del database in cui MySQMail memorizzerà i dati."
--- mysqmail-0.4.9.orig/debian/po/ru.po
+++ mysqmail-0.4.9/debian/po/ru.po
@@ -0,0 +1,100 @@
+# translation of ru.po to Russian
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Yuri Kozlov <yuray@komyakino.ru>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: mysqmail 0.4.7-3\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-10-09 09:27+0400\n"
+"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
+"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\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
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "Использовать информацию об аутентификации в MySQL из DTC?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr "MySQMail может использовать те же учётные данные MySQL что и DTC."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Если вы ответите утвердительно, то вопросы об имени пользователя и пароле "
+"для настройки MySQMail заданы не будут."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "Имя хоста MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr "Введите имя хоста или IP-адрес сервера MySQL для MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "Имя пользователя MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Введите имя пользователя в MySQL, необходимое для создания (и позднее, "
+"доступа) базы данных MySQMail."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "Пароль к MySQL:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Введите пароль к MySQL, необходимый для создания (и позднее, доступа) базы "
+"данных MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "Имя базы данных MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr "Введите имя базы данных, в которой MySQMail будет хранить данные."
--- mysqmail-0.4.9.orig/debian/po/templates.pot
+++ mysqmail-0.4.9/debian/po/templates.pot
@@ -0,0 +1,91 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr ""
--- mysqmail-0.4.9.orig/debian/po/ja.po
+++ mysqmail-0.4.9/debian/po/ja.po
@@ -0,0 +1,96 @@
+# Japanese translation of mysqmail debconf templates.
+# Copyright (C) 2009 Hideki Yamane <henrich@debian.or.jp>
+# This file is distributed under the same license as the mysqmail package.
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: mysqmail 0.4.7-3\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-09-12 02:27+0900\n"
+"Last-Translator: Hideki Yamane (Debian-JP) <henrich@debian.or.jp>\n"
+"Language-Team: Debian JP Project <debian-doc@debian.or.jp>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "DTC から MySQL 認証情報を再利用しますか?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr "MySQMail は DTC と同じ MySQL クレデンシャルを利用できます。"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"この設定を選ぶと、MySQMail を設定するためのログイン名とパスワードを求められな"
+"くなります。"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "MySQL ホスト名:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr "MySQMail 用の MySQL サーバのホスト名か IP アドレスを入力してください。"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "MySQL ログイン名:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"MySQMail データベースを作成（そして後ほどアクセスするのに) 必要な MySQL ログ"
+"イン名を入力してください。"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "MySQL パスワード:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"MySQMail データベースを作成（そして後ほどアクセスするのに) 必要な MySQL パス"
+"ワードを入力してください。"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "MySQL データベース名:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr "MySQMail がデータを保存するデータベースの名前を入力してください。"
--- mysqmail-0.4.9.orig/debian/po/cs.po
+++ mysqmail-0.4.9/debian/po/cs.po
@@ -0,0 +1,98 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the mysqmail package.
+# Martin Sin <martin.sin@zshk.cz>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version:  mysqmail 0.4.7-3\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-10-02 11:49+0200\n"
+"Last-Translator: Martin Sin <martin.sin@zshk.cz>\n"
+"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\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
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "Použít autentizační informace MySQL z DTC?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr "MySQMail umí používat údaje MySQL jako DTC."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Pokud si vyberete tuto volbu, budete vyzváni k zadání uživatelského jména a "
+"hesla pro nastavení MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "Jméno počítače MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr "Zadejte prosím jméno nebo IP adresu serveru MySQL pro MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "Přihlášení MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Zadejte prosím přihlášení do MySQL potřebné k vytvoření (a pozdějšímu "
+"přístupu) k databázi MySQMail."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "Heslo MySQL:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Zadejte prosím heslo MySQL potřebné k vytvoření (a pozdějšímu přístupu) k "
+"databázi MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "Jméno databáze MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr ""
+"Zadejte prosím jméno databáze, která bude použita pro uložení dat MySQMail."
--- mysqmail-0.4.9.orig/debian/po/sv.po
+++ mysqmail-0.4.9/debian/po/sv.po
@@ -0,0 +1,101 @@
+# Translation of MySQMail debconf template to Swedish
+# Copyright (C) 2009 Martin Bagge <brother@bsnet.se>
+# This file is distributed under the same license as the mysqmail package.
+#
+# Martin Bagge <brother@bsnet.se>, 2009
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-12-29 11:38+0100\n"
+"Last-Translator: Martin Bagge <brother@bsnet.se>\n"
+"Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
+"Language: sv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Swedish\n"
+"X-Poedit-Country: Sweden\n"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "Återanvända MySQL-konto från DTC?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr "MySQMail kan använda samma inloggningsuppgifter som DTC."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Om du väljer detta alternativ behöver du inte ange användanamn och lösenord "
+"i inställningarna för MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "Värdnamn för MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr ""
+"Ange värdnamnet eller IP-adressen för MySQL-servern som MySQMail ska använda."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "Användarnamn i MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Ange MySQL-användaren som behövs för att skapa (och senare för att få "
+"tillgång till) MySQL-databasen."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "Lösenord i MySQL:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Ange MySQL-lösenordet som behövs för att skapa (och senare för att få "
+"tillgång till) MySQL-databasen."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "Databasnamn i MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr ""
+"Ange namnet på den databas som MySQMail ska använda för att lagra sin data."
--- mysqmail-0.4.9.orig/debian/po/fi.po
+++ mysqmail-0.4.9/debian/po/fi.po
@@ -0,0 +1,98 @@
+# Copyright (C) 2009
+# This file is distributed under the same license as the mysqmail package.
+#
+# Esko Arajärvi <edu@iki.fi>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-10-06 21:36+0300\n"
+"Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
+"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "Käytetäänkö DTC:n MySQL-tunnistautumistietoja?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr "MySQMail voi käyttää samoja tunnuksia kuin DTC."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Jos valitset tämän vaihtoehdon, sinulta ei kysytä tunnusta ja salasanaa "
+"MySQMailin asetusten tekemistä varten."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "MySQL-verkkonimi:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr "Anna MySQMailin käyttämän MySQL-palvelimen verkkonimi tai IP-osoite."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "MySQL-tunnus:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Anna MySQL-tunnus, jota tarvitaan MySQMailin tietokannan luomiseen (ja "
+"myöhemmin sen käyttämiseen)."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "MySQL-salasana:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Anna MySQL-salasana, jota tarvitaan MySQMailin tietokannan luomiseen (ja "
+"myöhemmin sen käyttämiseen"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "MySQL-tietokannan nimi:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr "Anna sen tietokannan nimi, johon MySQLMail tallentaa tietonsa."
--- mysqmail-0.4.9.orig/debian/po/vi.po
+++ mysqmail-0.4.9/debian/po/vi.po
@@ -0,0 +1,99 @@
+# Vietnamese translation for MySQmail.
+# Copyright © 2009 Free Software Foundation, Inc.
+# Clytie Siddall <clytie@riverland.net.au>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: mysqmail 0.4.7-3\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-09-30 15:22+0930\n"
+"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
+"Language-Team: Vietnamese <vi-VN@googlegroups.com>\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"
+"X-Generator: LocFactoryEditor 1.8\n"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "Dùng lại thông tin xác thực MySQL từ DTC ?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr ""
+"MySQMail có khả năng sử dụng cùng những thông tin xác thực MySQL với DTC."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Bật tùy chọn này thì bạn không bị nhắc gõ tên đăng nhập và mật khẩu mỗi lần "
+"cấu hình MySQMail"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "Tên máy MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr "Hãy gõ tên máy hay địa chỉ IP của máy phục vụ MySQL cho MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "Đang nhập MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Hãy gõ tên đăng nhập MySQL cần thiết để tạo (và truy cập về sau) cơ sở dữ "
+"liệu MySQMail."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "Mật khẩu MySQL:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Hãy gõ mật khẩu MySQL cần thiết để tạo (và truy cập về sau) cơ sở dữ liệu "
+"MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "Tên cơ sở dữ liệu MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr "Hãy gõ tên của cơ sở dữ liệu vào đó MySQMail nên lưu dữ liệu."
--- mysqmail-0.4.9.orig/debian/po/fr.po
+++ mysqmail-0.4.9/debian/po/fr.po
@@ -0,0 +1,118 @@
+# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Christian Perrier <bubulle@debian.org>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-10-09 20:31+0200\n"
+"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "Réutiliser les informations d'authentification MySQL de DTC ?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr "MySQMail peut utiliser les mêmes identifiants MySQL que DTC."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Si vous choisissez cette option, vous n'aurez pas à entrer un nom "
+"d'utilisateur ou un mot de passe pour configurer MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "Nom de l'hôte MySQL :"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr ""
+"Veuillez indiquer le nom d'hôte ou l'adresse IP du serveur MySQL pour "
+"MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "Nom d'utilisateur MySQL :"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Veuillez indiquer l'identifiant MySQL qui sera utilisé pour créer (puis "
+"ensuite utiliser) la base de données de MySQMail."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "Mot de passe MySQL :"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Veuillez indiquer le mot de passe MySQL qui sera utilisé pour créer (puis "
+"ensuite utiliser) la base de données de MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "Nom de la base de données MySQL :"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr ""
+"Veuillez indiquer le nom de la base de données où MySQMail conservera ses "
+"informations."
+
+#~ msgid ""
+#~ "Enter your MySQL login. MySQMail needs it to access to your MySQL table."
+#~ msgstr ""
+#~ "Veuillez indiquer l'identifiant de l'utilisateur MySQL. MySQMail en a "
+#~ "besoin pour accéder à vos tables MySQL."
+
+#~ msgid "Enter your MySQL password."
+#~ msgstr "Entrez votre mot de passe MySQL."
+
+#~ msgid ""
+#~ "MySQmail will use it to save trafic for pop3, smtp ftp, and pop3 login "
+#~ "auth."
+#~ msgstr ""
+#~ "MySQMail l'utilisera pour sauvegarder le trafic pour le pop3, smtp, ftp, "
+#~ "et l'authentification pop3."
--- mysqmail-0.4.9.orig/debian/po/pt_BR.po
+++ mysqmail-0.4.9/debian/po/pt_BR.po
@@ -0,0 +1,127 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: 0.4.2\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-07-21 13:22-0300\n"
+"Last-Translator: Rodrigo Moglia <moglia@interatia.com>\n"
+"Language-Team: Rodrigo Moglia <moglia@interatia.com>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Portuguese\n"
+"X-Poedit-Country: BRAZIL\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+#, fuzzy
+#| msgid "Reuse MySQL auth information from DTC?"
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "Deseja reutilizar as informações de autenticação do DTC?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+#, fuzzy
+#| msgid ""
+#| "MySQMail can reuse the login and password that DTC will use. This way, "
+#| "you will not have to enter any login and passord to configure MySQMail."
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"MySQMail pode reutilizar as informações de login e senha do DTC. Desta forma "
+"você não precisa especificar login e senha diferentes para configurar o "
+"MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "Hostname MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+#, fuzzy
+#| msgid "Please enter the hostname or IP address of the MySQL server."
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr "Por favor, informe o hostname ou endereço IP do seu servidor MySQL."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+#, fuzzy
+#| msgid "MySQL Login:"
+msgid "MySQL login:"
+msgstr "Login MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+#, fuzzy
+#| msgid "MySQL Password:"
+msgid "MySQL password:"
+msgstr "Senha MySQL:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "Nome do banco de dados MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+#, fuzzy
+#| msgid "Please enter the hostname or IP address of the MySQL server."
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr "Por favor, informe o hostname ou endereço IP do seu servidor MySQL."
+
+#~ msgid ""
+#~ "Enter your MySQL login. MySQMail needs it to access to your MySQL table."
+#~ msgstr ""
+#~ "Informe seu login MySQL. MySQMail precisa destas informações para acessar "
+#~ "sua tabela MySQL."
+
+#~ msgid "Enter your MySQL password."
+#~ msgstr "Informe a senha do MySQL"
+
+#~ msgid ""
+#~ "MySQmail will use it to save trafic for pop3, smtp ftp, and pop3 login "
+#~ "auth."
+#~ msgstr ""
+#~ "MySQmail vai usar estas informações para salvar o tráfego pop3, smtp, ftp "
+#~ "e também informações de autenticação pop3."
--- mysqmail-0.4.9.orig/debian/po/es.po
+++ mysqmail-0.4.9/debian/po/es.po
@@ -0,0 +1,122 @@
+# mysqmail po-debconf translation to Spanish
+# Copyright (C) 2009 Software in the Public Interest
+# This file is distributed under the same license as the mysqmail package.
+#
+# Changes:
+#   - Initial translation
+#       Francisco Javier Cuadrado <fcocuadrado@gmail.com>, 2009
+#
+# Traductores, si no conocen el formato PO, merece la pena leer la
+# documentación de gettext, especialmente las secciones dedicadas a este
+# formato, por ejemplo ejecutando:
+#       info -n '(gettext)PO Files'
+#       info -n '(gettext)Header Entry'
+#
+# Equipo de traducción al español, por favor, lean antes de traducir
+# los siguientes documentos:
+#
+#   - El proyecto de traducción de Debian al español
+#     http://www.debian.org/intl/spanish/
+#     especialmente las notas de traducción en
+#     http://www.debian.org/intl/spanish/notas
+#
+#   - La guía de traducción de po's de debconf:
+#     /usr/share/doc/po-debconf/README-trans
+#     o http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: mysqmail 0.4.7-3\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-09-29 09:15+0200\n"
+"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n"
+"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "¿Desea reutilizar la información de autenticación de MySQL del DTC?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr "MySQMail puede utilizar las mismas credenciales de MySQL que DTC."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Si escoge esta opción, no se le preguntará por un usuario y una contraseña "
+"para configurar MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "Nombre del servidor de MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr ""
+"Introduzca el nombre de la máquina o la dirección IP del servidor de MySQL "
+"para MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "Usuario de MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Introduzca el usuario de MySQL necesario para crear (y para acceder después) "
+"a la base de datos de MySQMail."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "Contraseña de MySQL:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Introduzca la contraseña de MySQL necesaria para crear (y para acceder "
+"después) a la base de datos de MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "Nombre de la base de datos de MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr ""
+"Introduzca el nombre de la base de datos en la que MySQMail almacenará sus "
+"datos."
--- mysqmail-0.4.9.orig/debian/po/POTFILES.in
+++ mysqmail-0.4.9/debian/po/POTFILES.in
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] mysqmail.templates
--- mysqmail-0.4.9.orig/debian/po/de.po
+++ mysqmail-0.4.9/debian/po/de.po
@@ -0,0 +1,104 @@
+# Translation of mysqmail to German
+# Copyright (C) 2001-2008, Thomas Goirand <thomas@goirand.fr>,
+# 2001-2008 Damien Mascord <tusker@tusker.org>,
+# 2003-2008 GPLHost LLC <info@gplhost.com>.
+# This file is distributed under the same license as the mysqmail package.
+# Chris Leick <c.leick@vollbio.de>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: mysqmail 0.4.7-1\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-10-12 17:31+0100\n"
+"Last-Translator: Chris Leick <c.leick@vollbio.de>\n"
+"Language-Team: German <debian-l10n-german@lists.debian.org>\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
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "MySQL-Authentifizierungsinformationen von DTC wiederverwenden?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr ""
+"MySQMail kann die gleichen MySQL-Zugangsberechtigungen wie DTC verwenden."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Wenn Sie diese Option wählen, werden Sie bei der Einrichtung von MySQMail "
+"nicht nach einem Anmeldenamen und einem Passwort gefragt."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "MySQL-Rechnername:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr ""
+"Bitte geben Sie den Rechnernamen oder die IP-Adresse des MySQL-Servers für "
+"MySQMail ein."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "MySQL-Anmeldename:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Geben Sie den MySQL-Anmeldenamen ein, der benötigt wird, um die MySQMail-"
+"Datenbank anzulegen (und später darauf zuzugreifen)."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "MySQL-Passwort:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Geben Sie das MySQL-Passwort ein, das benötigt wird, um die MySQMail-"
+"Datenbank anzulegen (und später darauf zuzugreifen)."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "MySQL-Datenbankname:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr ""
+"Bitte geben Sie den Namen der Datenbank ein, in der MySQMail seine Daten "
+"speichern wird."
--- mysqmail-0.4.9.orig/debian/po/pt.po
+++ mysqmail-0.4.9/debian/po/pt.po
@@ -0,0 +1,101 @@
+# mysqmail debconf Portuguese translation
+# Copyright (C) 2009, the mysqmail authors
+# This file is distributed under the same license as the mysqmail package.
+# Pedro Ribeiro <p.m42.ribeiro@gmail.com>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: mysqmail 0.4.7-3\n"
+"Report-Msgid-Bugs-To: mysqmail@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-04 15:24+0800\n"
+"PO-Revision-Date: 2009-09-28 23:00+0000\n"
+"Last-Translator: Pedro Ribeiro <p.m42.ribeiro@gmail.com>\n"
+"Language-Team: Portuguese <traduz@debianpt.org>\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
+#: ../mysqmail.templates:2001
+msgid "Reuse MySQL authentication information from DTC?"
+msgstr "Reutilizar a informação de autenticação do MySQL do DTC?"
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid "MySQMail can use the same MySQL credentials as DTC."
+msgstr "O MySQMail pode usar as mesmas credenciais do MySQL que o DTC."
+
+#. Type: boolean
+#. Description
+#: ../mysqmail.templates:2001
+msgid ""
+"If you choose this option, you will not be prompted for a login and password "
+"to configure MySQMail."
+msgstr ""
+"Se escolher esta opção, não lhe será pedido login e palavra-chave para "
+"configurar o MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid "MySQL hostname:"
+msgstr "Nome da máquina do MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:3001
+msgid ""
+"Please enter the hostname or IP address of the MySQL server for MySQMail."
+msgstr ""
+"Indique, por favor, o nome da máquina ou endereço IP do servidor MySQL para "
+"o MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid "MySQL login:"
+msgstr "Login MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:4001
+msgid ""
+"Please enter the MySQL login needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Indique, por favor, o login do MySQL necessário para criar (e mais tarde "
+"aceder à) base de dados do MySQMail."
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid "MySQL password:"
+msgstr "Palavra-chave do MySQL:"
+
+#. Type: password
+#. Description
+#: ../mysqmail.templates:5001
+msgid ""
+"Please enter the MySQL password needed to create (and later, access) the "
+"MySQMail database."
+msgstr ""
+"Indique, por favor, a palavra-chave do MySQL necessária para criar (e mais "
+"tarde aceder à) base de dados do MySQMail."
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid "MySQL database name:"
+msgstr "Nome da base de dados do MySQL:"
+
+#. Type: string
+#. Description
+#: ../mysqmail.templates:6001
+msgid ""
+"Please enter the name of the database where MySQMail will store its data."
+msgstr ""
+"Indique, por favor, o nome da base de dados onde o MySQMail irá guardar os "
+"seus dados."
