Your message dated Mon, 09 Jul 2007 16:47:02 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#427071: fixed in libxml-stream-perl 1.22-3
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: libxml-stream-perl
Version: 1.22-2
Severity: normal
Tags: patch
The GSSAPI SASL mechanism needs service and host name in call to
client_new. The supplied patch also fixes use of uninitialied variable
in SASLAnswerChallenge.
Tested with sendxmpp connected to a xmpp server with support for GSSAPI.
-- System Information:
Debian Release: lenny/sid
APT prefers testing
APT policy: (750, 'testing'), (671, 'stable'), (500, 'testing'), (300,
'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.18-3-k7 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages libxml-stream-perl depends on:
ii libauthen-sasl-perl 2.10-1 Authen::SASL - SASL Authentication
ii libio-socket-ssl-perl 1.02-1 Perl module implementing object or
ii perl 5.8.8-7 Larry Wall's Practical Extraction
libxml-stream-perl recommends no packages.
-- no debconf information
--- Stream.pm.orig 2004-08-25 16:23:32.000000000 +0200
+++ Stream.pm 2007-06-01 18:56:41.000000000 +0200
@@ -2057,7 +2057,12 @@
$response = $self->{SIDS}->{$sid}->{sasl}->{client}->client_step($challenge);
}
- my $response64 = MIME::Base64::encode_base64($response,"");
+ my $response64 = "";
+ if (defined $response)
+ {
+ $response64 = MIME::Base64::encode_base64($response,"");
+ }
+
$self->SASLResponse($sid,$response64);
}
@@ -2107,6 +2112,8 @@
my $username = shift;
my $password = shift;
+ my $service = "xmpp";
+ my $hostname = $self->{SIDS}->{$sid}->{hostname};
my $mechanisms = $self->GetStreamFeature($sid,"xmpp-sasl");
return unless defined($mechanisms);
@@ -2120,7 +2127,7 @@
}
);
- $self->{SIDS}->{$sid}->{sasl}->{client} = $sasl->client_new();
+ $self->{SIDS}->{$sid}->{sasl}->{client} = $sasl->client_new($service, $hostname);
$self->{SIDS}->{$sid}->{sasl}->{username} = $username;
$self->{SIDS}->{$sid}->{sasl}->{password} = $password;
$self->{SIDS}->{$sid}->{sasl}->{authed} = 0;
--- End Message ---
--- Begin Message ---
Source: libxml-stream-perl
Source-Version: 1.22-3
We believe that the bug you reported is fixed in the latest version of
libxml-stream-perl, which is due to be installed in the Debian FTP archive:
libxml-stream-perl_1.22-3.diff.gz
to pool/main/libx/libxml-stream-perl/libxml-stream-perl_1.22-3.diff.gz
libxml-stream-perl_1.22-3.dsc
to pool/main/libx/libxml-stream-perl/libxml-stream-perl_1.22-3.dsc
libxml-stream-perl_1.22-3_all.deb
to pool/main/libx/libxml-stream-perl/libxml-stream-perl_1.22-3_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Jay Bonci <[EMAIL PROTECTED]> (supplier of updated libxml-stream-perl package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sat, 07 Jul 2007 17:53:40 -0400
Source: libxml-stream-perl
Binary: libxml-stream-perl
Architecture: source all
Version: 1.22-3
Distribution: unstable
Urgency: low
Maintainer: Jay Bonci <[EMAIL PROTECTED]>
Changed-By: Jay Bonci <[EMAIL PROTECTED]>
Description:
libxml-stream-perl - Perl module for accessing XML Streams
Closes: 395395 427071
Changes:
libxml-stream-perl (1.22-3) unstable; urgency=low
.
* Thanks to Andreas for the upload (Closes: #427071)
* Added Suggests: libnet-dns-perl
* Accepted patch from Pablo Barbachano. Thanks! (Closes: #395395)
* Updated debian/watch so that uupdate will work
* Policy-version bump to 3.7.2.2 (no other changes)
* Updated debhelper into Build-Depends instead of -Indep for lintian
* Only conditionally ignore make clean, also for lintian
Files:
6639e0eff07cdc7d1bf06c62751ee0c8 683 perl optional
libxml-stream-perl_1.22-3.dsc
c32a4d3b7e174bb57ade8c88274b8ba7 3396 perl optional
libxml-stream-perl_1.22-3.diff.gz
533b371923f75e647861637e36c51d07 66976 perl optional
libxml-stream-perl_1.22-3_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFGkBLGZNh5D+C4st4RApMcAJsF1EWAw9T9fxghK+m+zJaOvlOOogCeNxXa
wwa1/5ykWe9qAogEY+bAsB4=
=QKmg
-----END PGP SIGNATURE-----
--- End Message ---