Package: libnet-server-mail-perl
Version: 0.15-1
Severity: minor
Tags: patch
In t/lmtp.t, an error occurs when ok(!$lmtp->dataend) is called. In
Net-Server-Mail-0.16, this bug is closed: ok($lmtp->dataend) is now
called.
In the Debian package, make test is not called so tis bug does not
appear.
-- System Information:
Debian Release: lenny/sid
APT prefers testing
APT policy: (800, 'testing'), (600, 'unstable'), (600, 'stable')
Architecture: i386 (i686)
Kernel: Linux 2.6.18-4-xen-686 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash
Versions of packages libnet-server-mail-perl depends on:
ii perl 5.8.8-7 Larry Wall's Practical Extraction
libnet-server-mail-perl recommends no packages.
-- no debconf information
diff -aburN libnet-server-mail-perl-0.15/debian/rules
libnet-server-mail-perl-0.15-new/debian/rules
--- libnet-server-mail-perl-0.15/debian/rules 2007-05-26 14:01:50.000000000
+0200
+++ libnet-server-mail-perl-0.15-new/debian/rules 2007-05-26
14:05:38.000000000 +0200
@@ -53,7 +53,7 @@
dh_testroot
dh_clean -k
- #$(MAKE) test
+ $(MAKE) test
$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
# As this is a architecture independent package, we are not supposed to
install
diff -aburN libnet-server-mail-perl-0.15/t/lmtp.t
libnet-server-mail-perl-0.15-new/t/lmtp.t
--- libnet-server-mail-perl-0.15/t/lmtp.t 2007-04-02 07:22:22.000000000
+0200
+++ libnet-server-mail-perl-0.15-new/t/lmtp.t 2007-05-26 14:05:54.000000000
+0200
@@ -48,7 +48,7 @@
ok($lmtp->to('postmaster'));
ok($lmtp->data);
ok($lmtp->datasend('To: postmaster'));
-ok(!$lmtp->dataend);
+ok($lmtp->dataend);
ok($lmtp->response);
ok($lmtp->quit);