Bug#405530: libnet-server-mail-perl: Bad end-of-data detection

2007-01-04 Thread ivan-debian
On Thu, Jan 04, 2007 at 11:08:33AM +0100, Xavier wrote:
> Package: libnet-server-mail-perl
> Version: 0.13-1
> Severity: normal
> Tags: patch
> 
> 
> The function data_part of Net::Server::Mail::SMTP is called for each
> chunk of 4096 bytes. If a mail contains 4093 bytes, the sequence
> \r\n.\r\n is splitted in two pieces so end-of-data detection failed and
> the process continue to wait data. Many other problems are solved with
> the patch bellow. I'va tried to contact package maintenr, but nothing
> appends (see http://rt.cpan.org/Public/Bug/Display.html?id=24038).

I've written upstream to see if he'll let me apply patches and make a 
0.14 CPAN release.  Given we can't get anything uploaded into Debian at 
the moment anyway (frozen for etch), I'd like to attempt integrating 
this upstream first if at all possible.

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#370084: fsh no longer works with cvs!

2006-09-11 Thread ivan-debian
severity 370084 important
thanks

This bug has a major effect on the usability of the package when used 
for its primary intended purpose as a tunnel to speed up CVS operations.

Perhaps fsh should even be removed from unstable if this can't be fixed 
before etch?  Better to have folks' CVS clients fail with some sort of 
meaningful error ("fsh: not found?  okay, i'll just change CVS_RSH to 
ssh") than to have cvs hang after the upgrade for all fsh users ("wtf?  
I upgraded from sarge to etch and now my cvs client just hangs!").

ssh has "master mode" in etch anyway, though if this can be fixed it 
would be nice to keep fsh around one or two more releases for 
interoperability with older/non-deb systems.

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#376033: RFA: libfreezethaw-perl -- legacy FreezeThaw perl module

2006-06-29 Thread ivan-debian
Package: wnpp
Severity: normal

Nothing particularly wrong with this package for what it is - a package 
of an old, popular-in-its day serialization module.  Better 
serializaiton solutions exist these days in perl core, such as Storable, 
but this module has no outstanding problems other than age and is still 
popular enough according to popularity-contest that a maintainer who 
still has a legacy need for it (or, barring that, QA) seems like a 
better place for it than requesting removal.

"never want to see you again, its true" 

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#344326: ftp.debian.org: please remove libbusiness-onlinepayment-bankofamerica-perl from unstable

2005-12-21 Thread ivan-debian
Package: ftp.debian.org
Severity: normal

Please remove libbusiness-onlinepayment-bankofamerica-perl from 
unstable.  Bank of America no longer operates the "eStores" gateway this 
module interfaces with.  Thanks.

-- 
Ivan Kohler, libbusiness-onlinepayment-bankofamerica-perl maintainer


signature.asc
Description: Digital signature


Bug#344324: O: libmldbm-sync-perl -- Perl module for safe concurrent access to MLDBM databases

2005-12-21 Thread ivan-debian
Package: wnpp
Severity: normal

I intend to orphan the libmldbm-sync-perl package.

If someone adopts libapache-asp-perl, they may want to adopt this as 
well.

The package description is:
 This module wraps around the MLDBM interface, by handling concurrent
 access to MLDBM databases with file locking, and flushes i/o explicity
 per lock/unlock.  The new [Read]Lock()/UnLock() API can be used to 
 serialize requests logically and improve performance for bundled reads 
 & writes.

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#342490: libdbix-dbschema-perl: all manpages except main DBIx::DBSchema one are empty

2005-12-07 Thread ivan-debian
Package: libdbix-dbschema-perl
Version: 0.28-1
Severity: important

huh, 0.27-1 was fine.  did something get mucked up with the build?

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-9-amd64-k8
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages libdbix-dbschema-perl depends on:
ii  libdbi-perl   1.48-1 Perl5 database interface by Tim Bu
ii  libfreezethaw-perl0.43-2 converting Perl structures to stri
ii  perl  5.8.7-4Larry Wall's Practical Extraction 

libdbix-dbschema-perl recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#315708: libdbd-pg-perl: execute fails with latest version

2005-10-03 Thread ivan-debian
Hi Manoj,

As Martin Pitt (libpq[34] maintainer) notes, connections to any server 
version back to 7.3 should work.  This is a bug in libdbd-pg-perl.

The error message you receive is:
  syntax error at or near "$1" at character 80

I suspect this has something to do with the libdbd-pg-perl upstream 
switch to server-side prepared statements (i.e. ->prepare and ->execute 
actually store the parsed statement server-side, rather than resending 
each time), and that it is triggered by specific SQL and column types. I 
am using libdbd-pg-perl 1.43 against a 7.4 server with no problems.

Could you patch your "Code that uses the DB" with the following patch 
and report the error you receive?  This will report the bad SQL 
statement being executed in addition the error message.

Also please report the schema of any tables referenced by the SQL 
causing the error (Output of "\d tablename" in psql).

Thanks!


--- db_code.old 2005-10-03 05:28:57.0 -0700
+++ db_code 2005-10-03 05:34:17.0 -0700
@@ -19,7 +19,7 @@
   $greylist_password,
   {
PrintError => 0,
-   RaiseError => 1,
+   RaiseError => 0,
AutoCommit => 0
   })
 or die $DBI::errstr;
@@ -119,7 +119,8 @@
 for my $sql (keys %SQL_Commands) {
   $Handles{$sql} = $dbh->prepare($SQL_Commands{ $sql});
 }
-$Handles{Select}->execute($ip, $sender, $recipient);
+$Handles{Select}->execute($ip, $sender, $recipient)
+  or die $Handles{Select}->errstr. ' executing '. 
$SQL_Commands{Select};
 
 my ($rid,$create_time,$last_update,$record_expires,$block_expires,
 $passed_count);
@@ -132,7 +133,8 @@
   $Handles{Select}->finish;
   $Handles{Insert}->execute($ip, $sender, $recipient, $now,
 "$greylist_black seconds", $now,
-"$greylist_grey seconds", $now, $now);
+"$greylist_grey seconds", $now, $now)
+or die $Handles{Insert}->errstr. ' executing '. 
$SQL_Commands{Insert};
   $dbh->commit();
   $result = $greylist_black;
   $event = 'new';
@@ -144,7 +146,8 @@
 $result = UnixDate($block_expires,"%s")-UnixDate($now,"%s");
 $event = 'black';
 #Log a note that they retried under our window
-$Handles{Blocked}->execute($now, $rid);
+$Handles{Blocked}->execute($now, $rid)
+  or die $Handles{Blocked}->errstr. ' executing '. 
$SQL_Commands{Blocked};
 $dbh->commit();
 $Handles{Blocked}->finish;
   }
@@ -156,14 +159,16 @@
 
 # Log a note that they retried sucessfully, and make sure they 
are
 # updated to the whitelist window
-$Handles{Success}->execute($now,"$greylist_white seconds", 
$now, $rid);
+$Handles{Success}->execute($now,"$greylist_white seconds", 
$now, $rid)
+  or die $Handles{Success}->errstr. ' executing '. 
$SQL_Commands{Success};
 $dbh->commit();
 $Handles{Success}->finish;
   }
   else {  #$now > $record_expires
 # At this point they are retrying past their expiration
 $Handles{Old}->execute($now, "$greylist_black seconds", $now,
-   "$greylist_grey seconds", $now, $rid);
+   "$greylist_grey seconds", $now, $rid)
+  or die $Handles{Old}->errstr. ' executing '. 
$SQL_Commands{Old};
 $dbh->commit();
 $Handles{Old}->finish;
 $result = $greylist_black;



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#329645: RFA: liblog-dispatch-perl -- Dispatches messages to multiple Log::Dispatch::* objects

2005-09-22 Thread ivan-debian
Package: wnpp
Severity: normal

I request an adopter for the liblog-dispatch-perl package.

The package description is:
 This module manages a set of Log::Dispatch::* objects, allowing you to
 add and remove output objects as desired.

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#329626: RFA: libclass-container-perl

2005-09-22 Thread ivan-debian
Package: wnpp
Severity: normal

I request an adopter for the libclass-container-perl package.  

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#325873: libclass-autouse-perl: Fails to install

2005-09-06 Thread ivan-debian
severity 325873 normal
tags 325873 unreproducable
thanks


I could not reproduce this bug on i386 or amd64.

The relevant bit appears to be:

  Failed to fetch ftp.belnet.be/debian-amd64/...etc...  MD5Sum mismatch

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=238560 indicates this
is probably something like a corrupting FTP proxy or firewall on your
specific network?  A suggested workaround is to use the http:// protocol
in your /etc/apt/sources.list.


-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#326232: libclass-container-perl: Fails to install

2005-09-06 Thread ivan-debian
severity 326232 normal
tags 326232 unreproducible
thanks

On Fri, Sep 02, 2005 at 05:34:39PM +0200, Gilles wrote:
> Package: libclass-container-perl
> Severity: important
> 
> Hello.
> 
> This is the same kind of bug as reported in #325873.

Which is not in itself a terribly useful bug report.  :)
Pasted from #325873:

> Trying to install the package, I get the following error:
>
> # apt-get install libclass-autouse-perl
> Reading Package Lists... Done
> Building Dependency Tree... Done
> The following NEW packages will be installed:
>   libclass-autouse-perl
> 0 upgraded, 1 newly installed, 0 to remove and 352 not upgraded.
> Need to get 20.7kB of archives.
> After unpacking 106kB of additional disk space will be used.
> Get:1 ftp://ftp.belnet.be sarge/main libclass-autouse-perl 1.17-1 [20.7kB]
> Fetched 20.7kB in 0s (58.7kB/s)
> Failed to fetch 
> ftp://ftp.belnet.be/debian-amd64/debian/pool/main/libc/libclass-autouse-perl/libclass-autouse-perl_1.17-1_all.deb
>  MD5Sum mismatch
> E: Unable to fetch some archives, maybe run apt-get update or try with 
> --fix-missing?
>
>
> The archive file was placed in the "partial/" directory, with a ".FAILED" 
> extension.
> I tried to use another mirror, with the same result.
>
> [...]
>
> -- System Information:
> Debian Release: 3.1
>   APT prefers unstable
> APT policy: (500, 'unstable')
> Architecture: amd64 (x86_64)
> Kernel: Linux 2.6.12.4-vs2.0+g1+g1
> Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

I could not reproduce this bug on i386 or amd64.

The relevant bit appears to be:

  Failed to fetch ftp.belnet.be/debian-amd64/...etc...  MD5Sum mismatch

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=238560 indicates this 
is probably something like a corrupting FTP proxy or firewall on your 
specific network?  A suggested workaround is to use the http:// protocol 
in your /etc/apt/sources.list.

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#295526: libpam_unix2 only works as root

2005-07-06 Thread ivan-debian
On Sat, Jul 02, 2005 at 12:13:10PM +0200, Robert Trebula wrote:
> Package: libpam-unix2
> Version: 1.25-1
> Followup-For: Bug #295526
> 
> Hi,
> 
> May I ask what is the status of this? Now that sarge is released, maybe
> the maintainer could re-consider the proposed change.

Sure, though I don't anticipate having time to do so in the immediate 
future.

If you'd like to help, please run the changes by the current PAM policy
maintainer Sam Hartman <[EMAIL PROTECTED]>, and also upstream,
Thorsten Kukuk <[EMAIL PROTECTED]> - I'm curious if SuSE has this bug with
pam_unix2 also and if they solved it differently?

-- 
_ivan



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292593: ITP: libcrypt-yapassgen-perl

2005-01-27 Thread ivan-debian
Package: wnpp

Crypt::YAPassGen from CPAN

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292272: ITP: libjavascript-rpc-perl

2005-01-25 Thread ivan-debian
Package: wnpp
Severity: wishlist

Javascript-RPC from CPAN

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#291647: RFA: libexception-class-perl

2005-01-21 Thread ivan-debian
Package: wnpp

I request an adopter for the libexception-class-perl package.

-- 
_ivan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]