Your message dated Mon, 20 Dec 2010 11:32:16 +0000
with message-id <[email protected]>
and subject line Bug#600971: fixed in amsn 0.98.3-3
has caused the Debian Bug report #600971,
regarding amsn: unable to receive offline messages
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
600971: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600971
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: amsn
Version: 0.98.3-2+b1
Severity: normal
Tags: patch
The current version is unable to receive offline messages, it looks as an
issue with the protocol.
On the forum they suggest to update to the current SVN version:
http://www.amsn-project.net/forums/index.php/topic,8098.0.html
But as we are in freeze, I advice against it. I found, instead, that just
applying this patch (attached to the mail) fixes the issue
http://amsn.svn.sourceforge.net/viewvc/amsn/trunk/amsn/protocol.tcl?r1=12196&r2=12195&pathrev=12196
Do you think you could upload an updated package for squeeze? I tagged the
bug "normal" because it's not a very big issue (nor sending offline messages
on msn is a release critical bug), but I think would be nice have OIMs
working in a stable release! :)
ciao
Riccardo
ps. thanks for maintaining amsn!
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: lang=it...@euro, lc_ctype=it...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash
Versions of packages amsn depends on:
ii amsn-data 0.98.3-2 Data files for aMSN
ii libc6 2.11.2-6 Embedded GNU C Library: Shared lib
ii libgcc1 1:4.4.5-4 GCC support library
ii libglib2.0-0 2.24.2-1 The GLib library of C routines
ii libgssdp-1.0-2 0.8.0-2 GObject-based library for SSDP
ii libgstfarsight0.10-0 0.0.21-2 Audio/Video communications framewo
ii libgstreamer-plugins-ba 0.10.30-1 GStreamer libraries from the "base
ii libgstreamer0.10-0 0.10.30-1 Core GStreamer libraries and eleme
ii libgupnp-1.0-3 0.14.0-2 GObject-based library for UPnP
ii libgupnp-igd-1.0-3 0.1.7-2+b1 library to handle UPnP IGD port ma
ii libjpeg62 6b1-1 The Independent JPEG Group's JPEG
ii libpng12-0 1.2.44-1 PNG library - runtime
ii libsnack2-alsa [libsnac 2.2.10-dfsg1-9 Sound extension to Tcl/Tk and Pyth
ii libsoup2.4-1 2.30.2-1 an HTTP library implementation in
ii libstdc++6 4.4.5-4 The GNU Standard C++ Library v3
ii libv4l-0 0.8.1-1 Collection of video4linux support
ii libx11-6 2:1.3.3-3 X11 client-side library
ii libxml2 2.7.7.dfsg-4 GNOME XML library
ii tcl-tls 1.5.0.dfsg-10 the TLS OpenSSL extension to Tcl
ii tk8.5 8.5.8-1 Tk toolkit for Tcl and X11, v8.5 -
ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime
amsn recommends no packages.
Versions of packages amsn suggests:
pn docker <none> (no description available)
ii galeon 2.0.7-2.1+b1 GNOME web browser for advanced use
ii sox 14.3.1-1 Swiss army knife of sound processi
ii tcl8.4 [tclsh] 8.4.19-4 Tcl (the Tool Command Language) v8
ii tcl8.5 [tclsh] 8.5.8-2 Tcl (the Tool Command Language) v8
-- no debconf information
--- trunk/amsn/protocol.tcl 2010/10/13 22:15:50 12195
+++ trunk/amsn/protocol.tcl 2010/10/16 23:06:47 12196
@@ -3820,6 +3820,11 @@
$soap destroy
set msg [GetXmlEntry $xml
"soap:Envelope:soap:Body:GetMessageResponse:GetMessageResult"]
+ if {$msg == ""} {
+ #microsoft changed the oim format to the prefix
s: instead of soap:
+ #so this is some kind of hack to try if this
oim has the new prefix
+ set msg [GetXmlEntry $xml
"s:Envelope:s:Body:GetMessageResponse:GetMessageResult"]
+ }
set msg [string map {"\r\n" "\n" } $msg]
set msg [string map {"\n" "\r\n" } $msg]
set message [Message create %AUTO%]
@@ -3839,6 +3844,13 @@
status_log "Auth failed, retry : $retry" white
set reauth [GetXmlEntry $xml
"soap:Envelope:soap:Body:soap:Fault:detail:RequiredAuthPolicy"]
set lock_challenge [GetXmlEntry $xml
"soap:Envelope:soap:Body:soap:Fault:detail:LockKeyChallenge"]
+ if {$reauth == "" && $lock_challenge == ""} {
+ #microsoft changed the oim format to
the prefix s: instead of soap:
+ #so this is some kind of hack to try if
this oim has the new prefix
+ set reauth [GetXmlEntry $xml
"s:Envelope:s:Body:s:Fault:detail:RequiredAuthPolicy"]
+ set lock_challenge [GetXmlEntry $xml
"s:Envelope:s:Body:s:Fault:detail:LockKeyChallenge"]
+ }
+
if { $lock_challenge != "" } {
CreateLockKey $lock_challenge
}
@@ -3919,6 +3931,13 @@
if { $faultcode == "q0:AuthenticationFailed" } {
set reauth [GetXmlEntry $xml
"soap:Envelope:soap:Body:soap:Fault:detail:RequiredAuthPolicy"]
set lock_challenge [GetXmlEntry $xml
"soap:Envelope:soap:Body:soap:Fault:detail:LockKeyChallenge"]
+ if {$reauth == "" && $lock_challenge == ""} {
+ #microsoft changed the oim format to
the prefix s: instead of soap:
+ #so this is some kind of hack to try if
this oim has the new prefix
+ set reauth [GetXmlEntry $xml
"s:Envelope:s:Body:s:Fault:detail:RequiredAuthPolicy"]
+ set lock_challenge [GetXmlEntry $xml
"s:Envelope:s:Body:s:Fault:detail:LockKeyChallenge"]
+ }
+
if { $lock_challenge != "" } {
CreateLockKey $lock_challenge
}
--- End Message ---
--- Begin Message ---
Source: amsn
Source-Version: 0.98.3-3
We believe that the bug you reported is fixed in the latest version of
amsn, which is due to be installed in the Debian FTP archive:
amsn-data_0.98.3-3_all.deb
to main/a/amsn/amsn-data_0.98.3-3_all.deb
amsn_0.98.3-3.diff.gz
to main/a/amsn/amsn_0.98.3-3.diff.gz
amsn_0.98.3-3.dsc
to main/a/amsn/amsn_0.98.3-3.dsc
amsn_0.98.3-3_amd64.deb
to main/a/amsn/amsn_0.98.3-3_amd64.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.
Muammar El Khatib <[email protected]> (supplier of updated amsn 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.8
Date: Fri, 19 Dec 2010 18:23:38 +0100
Source: amsn
Binary: amsn amsn-data
Architecture: source amd64 all
Version: 0.98.3-3
Distribution: unstable
Urgency: low
Maintainer: Muammar El Khatib <[email protected]>
Changed-By: Muammar El Khatib <[email protected]>
Description:
amsn - An MSN messenger written in Tcl
amsn-data - Data files for aMSN
Closes: 597204 600971
Changes:
amsn (0.98.3-3) unstable; urgency=low
.
* Bump Standards-Version to 3.9.1. No changes were needed.
* debian/patches/07_infoaudacious.dpatch
+ It has been included a patch from revision 12184 of amsn's SVN
repository.
With this change, the audacios music plugin is able to detect when the
player is set to the 'paused' state. (Closes: #597204)
* debian/patches/08_offline_message_issue.dpatch
+ This is a change introduced in aMSN's SVN (revision 12185) to
protocol.tcl
due to changes in the oim soap request so that aMSN is able to receive
offline messages again. Thanks to Riccardo Stagni for providing a patch.
(Closes: #600971)
* Maintainer's mail has been changed.
* This revision of aMSN avoids a FTBFS that happens in Hurd because of the
libasyncresolver.so.
Checksums-Sha1:
373b32eca831535c7894630fa9d290663e6d6398 1228 amsn_0.98.3-3.dsc
ecbf64eff6f040b424f3e6a501c5f53e78d84e8e 26646 amsn_0.98.3-3.diff.gz
a465c781fa14d5658b2aa576fc752cf734d113f1 428756 amsn_0.98.3-3_amd64.deb
e46febafad58cedaa0a01c0918e89de1a0ee7466 12957946 amsn-data_0.98.3-3_all.deb
Checksums-Sha256:
4e4b6c00d6dded855943226448d18c6edeebce705823f3c73cb0009d13701a15 1228
amsn_0.98.3-3.dsc
f0987b8d109b2711c740403b05e8b0b38b2853cd73b3e8659da1fb6ddbb8ef38 26646
amsn_0.98.3-3.diff.gz
af378643220c69d19cb05ad0f6d57c2dfb92ee8c48461395ff97eabaa941747c 428756
amsn_0.98.3-3_amd64.deb
f25c01855cd6bed35a5c7613ab00b71f8b6c271ee3ad1e7ac6e6d0943fe09004 12957946
amsn-data_0.98.3-3_all.deb
Files:
6dd580dd108f44d34580dff86b21bb68 1228 x11 optional amsn_0.98.3-3.dsc
579c8ea4790411ee73a0810e54cef05b 26646 x11 optional amsn_0.98.3-3.diff.gz
d878f6383af1ef3571bdeec18d196b73 428756 x11 optional amsn_0.98.3-3_amd64.deb
d2393d6d51a16e8b8bf2cf34ece5b436 12957946 x11 optional
amsn-data_0.98.3-3_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iEYEARECAAYFAk0POnMACgkQMOtAOxJwKfH93wCfZprhLVJHidKh8unVl8MWyrEg
kmcAn15cFjpv7t3ecfknZocoKu/IoTQr
=2j0h
-----END PGP SIGNATURE-----
--- End Message ---