Your message dated Thu, 08 Sep 2005 13:32:14 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#324832: fixed in bitlbee 0.92-2
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)
--------------------------------------
Received: (at submit) by bugs.debian.org; 24 Aug 2005 10:34:44 +0000
>From [EMAIL PROTECTED] Wed Aug 24 03:34:44 2005
Return-path: <[EMAIL PROTECTED]>
Received: from gut75-4-82-235-161-207.fbx.proxad.net (localhost.localdomain)
[82.235.161.207] (postfix)
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E7sah-0004by-00; Wed, 24 Aug 2005 03:34:44 -0700
Received: by localhost.localdomain (Postfix, from userid 1000)
id 8661FBF04CB; Wed, 24 Aug 2005 12:34:45 +0200 (CEST)
Content-Type: multipart/mixed; boundary="===============1524001755=="
MIME-Version: 1.0
From: Gwendal Stevanazzi <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: bitlbee: Patch available to support google talk
X-Mailer: reportbug 3.16
Date: Wed, 24 Aug 2005 12:34:45 +0200
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
This is a multi-part MIME message sent by reportbug.
--===============1524001755==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: bitlbee
Version: 0.92-1
Severity: normal
Tags: patch
A patch is available upstream to support google's new instant messaging
service.
http://get.bitlbee.org/patches/bitlbee-jabberserver.patch
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-rc3gwen
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages bitlbee depends on:
ii adduser 3.67 Add and remove users and groups
ii debconf 1.4.57 Debian configuration management sy
ii debianutils 2.14.2 Miscellaneous utilities specific t
ii libc6 2.3.5-4 GNU C Library: Shared libraries an
ii libglib2.0-0 2.8.0-1 The GLib library of C routines
ii libgnutls11 1.0.16-13.1 GNU TLS library - runtime library
ii net-tools 1.60-15 The NET-3 networking toolkit
ii netbase 4.21 Basic TCP/IP networking system
ii netkit-inetd 0.10-10.2 The Internet Superserver
ii tcpd 7.6.dbs-8 Wietse Venema's TCP wrapper utilit
bitlbee recommends no packages.
-- debconf information:
* bitlbee/serveport: 6667
--===============1524001755==
Content-Type: text/x-c; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="bitlbee-jabberserver.patch"
diff -uNr archive/bitlbee-last/protocols/jabber/jabber.c
bitlbee/protocols/jabber/jabber.c
--- archive/bitlbee-last/protocols/jabber/jabber.c 2004-11-14
22:37:47.000000000 +0100
+++ bitlbee/protocols/jabber/jabber.c 2005-08-24 09:47:25.000000000 +0200
@@ -565,16 +565,27 @@
{
struct aim_user *user;
int port = -1, ssl = 0;
+ char *server = NULL, *s;
if (!gjc || gjc->state != JCONN_STATE_OFF)
return;
user = GJ_GC(gjc)->user;
if (*user->proto_opt[0]) {
- if (isdigit(user->proto_opt[0][0]))
- sscanf(user->proto_opt[0], "%d", &port);
+ /* If there's a dot, assume there's a hostname in the beginning
*/
+ if (strchr(user->proto_opt[0], '.')) {
+ server = g_strdup(user->proto_opt[0]);
+ if ((s = strchr(server, ':')))
+ *s = 0;
+ }
+
+ /* After the hostname, there can be a port number */
+ s = strchr(user->proto_opt[0], ':');
+ if (s && isdigit(s[1]))
+ sscanf(s + 1, "%d", &port);
- if (strstr(user->proto_opt[0], "ssl"))
+ /* And if there's the string ssl, the user wants an
SSL-connection */
+ if (strstr(user->proto_opt[0], ":ssl") ||
g_strcasecmp(user->proto_opt[0], "ssl") == 0)
ssl = 1;
}
@@ -582,6 +593,9 @@
port = DEFAULT_PORT;
else if (port == -1 && ssl)
port = DEFAULT_PORT_SSL;
+
+ if (server == NULL)
+ server = g_strdup(gjc->user->server);
gjc->parser = XML_ParserCreate(NULL);
XML_SetUserData(gjc->parser, (void *)gjc);
@@ -589,14 +603,16 @@
XML_SetCharacterDataHandler(gjc->parser, charData);
if (ssl) {
- if ((gjc->ssl = ssl_connect(gjc->user->server, port,
gjab_connected_ssl, GJ_GC(gjc))))
+ if ((gjc->ssl = ssl_connect(server, port, gjab_connected_ssl,
GJ_GC(gjc))))
gjc->fd = ssl_getfd(gjc->ssl);
else
gjc->fd = -1;
} else {
- gjc->fd = proxy_connect(gjc->user->server, port,
gjab_connected, GJ_GC(gjc));
+ gjc->fd = proxy_connect(server, port, gjab_connected,
GJ_GC(gjc));
}
+ g_free(server);
+
if (!user->gc || (gjc->fd < 0)) {
STATE_EVT(JCONN_STATE_OFF)
return;
--===============1524001755==--
---------------------------------------
Received: (at 324832-close) by bugs.debian.org; 8 Sep 2005 20:42:45 +0000
>From [EMAIL PROTECTED] Thu Sep 08 13:42:45 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1EDT4A-0006Et-00; Thu, 08 Sep 2005 13:32:14 -0700
From: Wilmer van der Gaast <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#324832: fixed in bitlbee 0.92-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Thu, 08 Sep 2005 13:32:14 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 3
Source: bitlbee
Source-Version: 0.92-2
We believe that the bug you reported is fixed in the latest version of
bitlbee, which is due to be installed in the Debian FTP archive:
bitlbee_0.92-2.diff.gz
to pool/main/b/bitlbee/bitlbee_0.92-2.diff.gz
bitlbee_0.92-2.dsc
to pool/main/b/bitlbee/bitlbee_0.92-2.dsc
bitlbee_0.92-2_i386.deb
to pool/main/b/bitlbee/bitlbee_0.92-2_i386.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.
Wilmer van der Gaast <[EMAIL PROTECTED]> (supplier of updated bitlbee 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: Thu, 8 Sep 2005 19:55:56 +0200
Source: bitlbee
Binary: bitlbee
Architecture: source i386
Version: 0.92-2
Distribution: unstable
Urgency: low
Maintainer: Wilmer van der Gaast <[EMAIL PROTECTED]>
Changed-By: Wilmer van der Gaast <[EMAIL PROTECTED]>
Description:
bitlbee - An IRC to other chat networks gateway
Closes: 297058 313158 324832
Changes:
bitlbee (0.92-2) unstable; urgency=low
.
* Added the patch that allows to connect to alternate Jabber servers.
Necessary for connecting to Google Talk. (Closes: #324832)
* Also possibly fixes some more problems with losing data when disk is
full.
* Added Vietnamese and Brazilian DebConf translations. Sorry for being
so late. (Closes: #297058, #313158)
Files:
38626249613dd8369f3ce62e750dffd3 613 net optional bitlbee_0.92-2.dsc
494dda981e5f0ea2cad5b59462cd9b8d 47357 net optional bitlbee_0.92-2.diff.gz
4935ba0399b5a2788886c2a8f778f687 316504 net optional bitlbee_0.92-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDIIWieYWXmuMwQFERAlRjAJ0XHkC/1rS6OdN9GeFWz7PfaDL4FQCfaVsh
qv1+UHfremevKfXaP7rGVCY=
=e44j
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]