Your message dated Tue, 03 Jul 2007 20:47:05 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#427071: fixed in libxml-stream-perl 1.22-2.1
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-2.1
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-2.1.diff.gz
to pool/main/libx/libxml-stream-perl/libxml-stream-perl_1.22-2.1.diff.gz
libxml-stream-perl_1.22-2.1.dsc
to pool/main/libx/libxml-stream-perl/libxml-stream-perl_1.22-2.1.dsc
libxml-stream-perl_1.22-2.1_all.deb
to pool/main/libx/libxml-stream-perl/libxml-stream-perl_1.22-2.1_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.
Andreas Barth <[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: Tue, 3 Jul 2007 20:24:26 +0000
Source: libxml-stream-perl
Binary: libxml-stream-perl
Architecture: source all
Version: 1.22-2.1
Distribution: unstable
Urgency: medium
Maintainer: Jay Bonci <[EMAIL PROTECTED]>
Changed-By: Andreas Barth <[EMAIL PROTECTED]>
Description:
libxml-stream-perl - Perl module for accessing XML Streams
Closes: 427071
Changes:
libxml-stream-perl (1.22-2.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Fix GSSAPI SASL authentication. Closes: #427071
Files:
f991920fd874073bbb3871711c731b9f 659 perl optional
libxml-stream-perl_1.22-2.1.dsc
17460f22312ccf827f1f0a096018a718 3048 perl optional
libxml-stream-perl_1.22-2.1.diff.gz
41a11d0bc75b9fe5f8c060808d61a222 66848 perl optional
libxml-stream-perl_1.22-2.1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFGirG7mdOZoew2oYURArY6AJ99os5JuNok1HFeawPdilbNQ6PfjQCgmYP6
gjoZLXWPkKtNjQb+42DM2mg=
=44kZ
-----END PGP SIGNATURE-----
--- End Message ---