Your message dated Sat, 03 Nov 2007 22:32:03 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#439775: fixed in mutt 1.5.17-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: mutt Version: 1.5.16-3 Severity: grave Justification: renders package unusable After upgrading to the new version of libgnutls13 in unstable, mutt fails to connect to my imaps server with "tls_socket_read ((unknown error code))". Downgrading to libgnutls13 1.6.3-1 fixes it. Apparently mutt calls gnutls_error_is_fatal() even when gnutls_record_recv() returns a positive value (success), but the default return value of that function has changed from 0 to 1 in the new gnutls. The comment on top of gnutls_error_is_fatal() in gnutls_errors.c says: * @error: is an error returned by a gnutls function. Error should be a * negative value. The following (untested) patch should fix that particular problem. --- mutt_ssl_gnutls.c.orig 2007-08-27 12:12:09.000000000 +0200 +++ mutt_ssl_gnutls.c 2007-08-27 12:12:43.000000000 +0200 @@ -99,7 +99,7 @@ } ret = gnutls_record_recv (data->state, buf, len); - if (gnutls_error_is_fatal(ret) == 1) + if (ret < 0 && gnutls_error_is_fatal(ret) == 1) { mutt_error ("tls_socket_read (%s)", gnutls_strerror (ret)); mutt_sleep (4); @@ -121,7 +121,7 @@ } ret = gnutls_record_send (data->state, buf, len); - if (gnutls_error_is_fatal(ret) == 1) + if (ret < 0 && gnutls_error_is_fatal(ret) == 1) { mutt_error ("tls_socket_write (%s)", gnutls_strerror (ret)); mutt_sleep (4); Cheers, Julien
--- End Message ---
--- Begin Message ---Source: mutt Source-Version: 1.5.17-1 We believe that the bug you reported is fixed in the latest version of mutt, which is due to be installed in the Debian FTP archive: mutt_1.5.17-1.diff.gz to pool/main/m/mutt/mutt_1.5.17-1.diff.gz mutt_1.5.17-1.dsc to pool/main/m/mutt/mutt_1.5.17-1.dsc mutt_1.5.17-1_amd64.deb to pool/main/m/mutt/mutt_1.5.17-1_amd64.deb mutt_1.5.17.orig.tar.gz to pool/main/m/mutt/mutt_1.5.17.orig.tar.gz 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. Christoph Berg <[EMAIL PROTECTED]> (supplier of updated mutt 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, 03 Nov 2007 23:00:04 +0100 Source: mutt Binary: mutt Architecture: source amd64 Version: 1.5.17-1 Distribution: unstable Urgency: low Maintainer: Adeodato Simó <[EMAIL PROTECTED]> Changed-By: Christoph Berg <[EMAIL PROTECTED]> Description: mutt - text-based mailreader supporting MIME, GPG, PGP and threading Closes: 264014 352478 416555 420598 433425 439775 447340 Changes: mutt (1.5.17-1) unstable; urgency=low . [ Adeodato Simó ] * Move the packaging back to Bazaar, adjust X-VCS-* accordingly. . [ Christoph Berg ] * Mention libsasl2-modules-gssapi-mit in README.Debian. (Closes: #433425) * Call autoreconf at build time, drop the autotools-update patch. * Update menu file, add lintian override file. * Refresh patches. . * New upstream version: + fix segfaults with single byte 8-bit characters in index_format. (Closes: #420598, Mutt: #2882) + properly render subject headers with encoded linefeeds. (Closes: #264014, Mutt: #1810) + only calls gnutls_error_is_fatal when gnutls_record_recv returns a negative value. (Closes: #439775, Mutt: #2954) + Large file support for mutt_pretty_size(). (Closes: #352478, #416555, Mutt: #2191) + Do not consider empty pipes for filtering in format strings. (Closes: #447340) Files: 810b7e8c70330e722444c3085e0d8584 829 mail standard mutt_1.5.17-1.dsc 49387458be0cb52b85ae0d73af699aae 3572651 mail standard mutt_1.5.17.orig.tar.gz 5b1b336ed386fe3a65ead73955ea2eea 66142 mail standard mutt_1.5.17-1.diff.gz 36b20587b9899dd6f6c8331c65123a4b 1943962 mail standard mutt_1.5.17-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFHLPUNxa93SlhRC1oRAvFyAKD1vtvOMBQNqHiB3SX9+g0K6AKpnQCfQYJM aCp28bR4kTm8qYX1xE29uh0= =+wS/ -----END PGP SIGNATURE-----
--- End Message ---

