Your message dated Sat, 29 Dec 2007 13:02:08 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#427336: fixed in icedove 2.0.0.9-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: icedove
Version: 2.0.0.0-4
Severity: normal
Tags: patch

# apt-get install icedove
Reading package lists... Done
Building dependency tree... Done
Suggested packages:
  icedove-gnome-support
The following packages will be upgraded:
  icedove
1 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
Need to get 0B/10.8MB of archives.
After unpacking 28.7kB disk space will be freed.
Reading package fields... Done
Reading package status... Done
Retrieving bug reports... Done
Parsing Found/Fixed information... Done
Reading changelogs... Done
apt-listchanges: Do you want to continue? [Y/n]?
(Reading database ... 168334 files and directories currently installed.)
Preparing to replace icedove 2.0.0.0-3 (using .../icedove_2.0.0.0-4_i386.deb) 
...
.
/var/lib/dpkg/tmp.ci/preinst: line 15: test: too many arguments
/var/lib/dpkg/tmp.ci/preinst: line 33: test: too many arguments
Unpacking replacement icedove ...
Setting up icedove (2.0.0.0-4) ...

Those script errors may occur on these lines:

     15        if test ! -e ${migrate_to}/${f_name}; then
     33        if test ! -e ${migrate_to}/${f_name}; then

because of possible whitespace (or other odd characters) in file
names. In that case, quoting file paths in that script might help.
Please consider the attached patch.

While purging the package I also noticed some files left behind in
/etc/icedove:

-rw-r--r-- 1 root root 337 Jun  3 11:21 auto-config.js
-rw-r--r-- 1 root root 894 Mar 29 10:39 global-config.js

Should they go away?

This is also odd:

Preparing to replace icedove 1.5.0.10.dfsg1-3 (using 
.../icedove_2.0.0.0-4_i386.deb) ...
.
Unpacking replacement icedove ...
dpkg: warning - unable to delete old directory `/usr/lib/icedove/chrome/icons': 
Directory not empty
dpkg: warning - unable to delete old directory 
`/usr/lib/icedove/defaults/pref': Directory not empty
dpkg: warning - unable to delete old directory 
`/usr/lib/icedove/defaults/autoconfig': Directory not empty

Should they go away?

Anyway, I hope I sorted all out by purging the package, removing all
the leftovers from previous icedove packages and installing icedove
2.0.0.0-4.


Cheers,
Cristian

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-4-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages icedove depends on:
ii  debianutils             2.19             Miscellaneous utilities specific t
ii  fontconfig              2.4.2-1.2        generic font configuration library
ii  libatk1.0-0             1.18.0-2         The ATK accessibility toolkit
ii  libc6                   2.5-9+b1         GNU C Library: Shared libraries
ii  libcairo2               1.4.6-1.1        The Cairo 2D vector graphics libra
ii  libfontconfig1          2.4.2-1.2        generic font configuration library
ii  libfreetype6            2.2.1-6          FreeType 2 font engine, shared lib
ii  libgcc1                 1:4.2-20070528-1 GCC support library
ii  libglib2.0-0            2.12.12-1        The GLib library of C routines
ii  libgtk2.0-0             2.10.12-2        The GTK+ graphical user interface
ii  libhunspell-1.1-0       1.1.5-6          spell checker and morphological an
ii  libjpeg62               6b-13            The Independent JPEG Group's JPEG
ii  libnspr4-0d             4.6.6-3          NetScape Portable Runtime Library
ii  libnss3-0d              3.11.5-3         Network Security Service libraries
ii  libpango1.0-0           1.16.4-1         Layout and rendering of internatio
ii  libpng12-0              1.2.15~beta5-2   PNG library - runtime
ii  libstdc++6              4.2-20070528-1   The GNU Standard C++ Library v3
ii  libx11-6                2:1.0.3-7        X11 client-side library
ii  libxcursor1             1:1.1.8-2        X cursor management library
ii  libxext6                1:1.0.3-2        X11 miscellaneous extension librar
ii  libxfixes3              1:4.0.3-2        X11 miscellaneous 'fixes' extensio
ii  libxft2                 2.1.12-2         FreeType-based font drawing librar
ii  libxi6                  1:1.0.1-4        X11 Input extension library
ii  libxinerama1            1:1.0.2-1        X11 Xinerama extension library
ii  libxrandr2              2:1.2.1-1        X11 RandR extension library
ii  libxrender1             1:0.9.2-1        X Rendering Extension client libra
ii  libxt6                  1:1.0.5-3        X11 toolkit intrinsics library
ii  psmisc                  22.5-1           Utilities that use the proc filesy
ii  zlib1g                  1:1.2.3-15       compression library - runtime

icedove recommends no packages.

-- debconf information:
* icedove/browser: Debian
--- /var/lib/dpkg/info/icedove.preinst.orig	2007-06-03 11:28:43.000000000 +0200
+++ /var/lib/dpkg/info/icedove.preinst	2007-06-03 11:29:39.000000000 +0200
@@ -11,7 +11,7 @@
      fi
      for f in ${migrate_from}/*; do
        f_name=$(basename $f)
-       if test ! -e ${migrate_to}/${f_name}; then
+       if test ! -e "${migrate_to}/${f_name}"; then
          mv $f ${migrate_to}/
        else
          rm -rf $f
@@ -29,7 +29,7 @@
      fi
      for f in ${migrate_from}/*; do
        f_name=$(basename $f)
-       if test ! -e ${migrate_to}/${f_name}; then
+       if test ! -e "${migrate_to}/${f_name}"; then
          mv $f ${migrate_to}/
        else
          rm -rf $f
@@ -47,7 +47,7 @@
      fi
      for f in ${migrate_from}/*; do
        f_name=$(basename $f)
-       if test ! -e ${migrate_to}/${f_name}; then
+       if test ! -e "${migrate_to}/${f_name}"; then
          mv $f ${migrate_to}/
        else
          rm -rf $f

--- End Message ---
--- Begin Message ---
Source: icedove
Source-Version: 2.0.0.9-1

We believe that the bug you reported is fixed in the latest version of
icedove, which is due to be installed in the Debian FTP archive:

icedove-dbg_2.0.0.9-1_amd64.deb
  to pool/main/i/icedove/icedove-dbg_2.0.0.9-1_amd64.deb
icedove-dev_2.0.0.9-1_amd64.deb
  to pool/main/i/icedove/icedove-dev_2.0.0.9-1_amd64.deb
icedove-gnome-support_2.0.0.9-1_amd64.deb
  to pool/main/i/icedove/icedove-gnome-support_2.0.0.9-1_amd64.deb
icedove_2.0.0.9-1.diff.gz
  to pool/main/i/icedove/icedove_2.0.0.9-1.diff.gz
icedove_2.0.0.9-1.dsc
  to pool/main/i/icedove/icedove_2.0.0.9-1.dsc
icedove_2.0.0.9-1_amd64.deb
  to pool/main/i/icedove/icedove_2.0.0.9-1_amd64.deb
icedove_2.0.0.9.orig.tar.gz
  to pool/main/i/icedove/icedove_2.0.0.9.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.
Alexander Sack <[EMAIL PROTECTED]> (supplier of updated icedove 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: Fri, 28 Dec 2007 16:05:05 +0100
Source: icedove
Binary: icedove-dev icedove icedove-gnome-support icedove-dbg
Architecture: source amd64
Version: 2.0.0.9-1
Distribution: unstable
Urgency: medium
Maintainer: Alexander Sack <[EMAIL PROTECTED]>
Changed-By: Alexander Sack <[EMAIL PROTECTED]>
Description: 
 icedove    - free/unbranded thunderbird mail/news/rss clone
 icedove-dbg - Debug Symbols for Icedove
 icedove-dev - Development files for Icedove
 icedove-gnome-support - Support for Gnome in Icedove
Closes: 427336 444903 453179 453365
Changes: 
 icedove (2.0.0.9-1) unstable; urgency=medium
 .
   * new upstream stability/security update (v2.0.0.9):
     - MFSA 2007-36 aka CVE-2007-4841: "URIs with invalid %-encoding mishandled
       by Windows"
     - MFSA 2007-29 aka CVE-2007-5339: "Crashes with evidence of memory
       corruption (rv:1.8.1.8) - browser engine"
     - MFSA 2007-29 aka CVE-2007-5340: "Crashes with evidence of memory
       corruption (rv:1.8.1.8) - javascript engine"
   * adapt adapt patches to new upstream codebase:
     - drop debian/patches/bz389801_deb443454_fix_gtk_theme_crashes.patch
     - update debian/patches/68_mips_performance.dpatch
     - update debian/patches/series
     - update debian/patches/autoconf2.13-rerun
   * fix ftbfs due to changed cairo pc Requires: (Closes: 453179)
     - add debian/patches/bz344818_att264996.patch
     - update debian/patches/autoconf2.13-rerun
     - update debian/patches/series
   * add copyright file (Closes: 453365)
     - add debian/copyright
   * quote some if test ! ... lines to fix preinst errors (Closes: 427336)
     - update debian/icedove.preinst
   * update icedove menu section - use "Applications/Network/Communication"
     (Closes: 444903)
     - update debian/icedove.menu
   * don't try to install debian/tmp/usr/lib/icedove/defaults/isp as its not
     shipped by make install anymore
     - update debian/icedove.install
Files: 
 3f7f945afc8537a1f58e1c96a6f94862 1728 mail optional icedove_2.0.0.9-1.dsc
 95f47c60b085527338feefa471e39ef5 34119937 mail optional 
icedove_2.0.0.9.orig.tar.gz
 6d8ed60ced17a6c9ae5f2aae2290cf9f 112522 mail optional icedove_2.0.0.9-1.diff.gz
 6cab1e2ff0d9e431a1fe360fcb14cd43 12265492 mail optional 
icedove_2.0.0.9-1_amd64.deb
 555d5bd404f065d9e61d707f59f2434d 55338 mail optional 
icedove-gnome-support_2.0.0.9-1_amd64.deb
 443f4dad43054ecfed854296b7ff9774 56316746 mail optional 
icedove-dbg_2.0.0.9-1_amd64.deb
 19eaae096417441b84cac06365096d9b 3956752 mail optional 
icedove-dev_2.0.0.9-1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iQIVAwUBR3Us16BE/gcUDGZkAQJO9xAAoZ8nPRr0KqRrDcdGi/hJvFa06M2RWNvW
n74f59Q+Zc3YNR/5zJpLCin3js/3jemA5Brh5b2peoJ4y14/GVbQL564vfD54FWE
tnfrcRgk9w1tNBAs8VAeYhifENZpX93R8wPHgVIgN3ruVdk2nucyPH7o+ZkPwKOj
XdQKyE0oh691sNqcO9sp8BDjkjDxxwyNzbzk1Vs3axQvsRj+8wegt3I0ulKRDV54
udEr1IiUZkszcTDr47QqDNNIzIvqdVknIHQsxdqKwRHD2r9U3Jiuj2xKtJi+kamI
hhmcrDmWtI4Ow3yBq+4qPmGcV3xLoPVyDo7gobvfq47Sj83YjLUevWzJg/Ao2/5A
T5BNGGvLLTgn4M1ohoehXbaPPH0aOQH0iH4/jddAr49RwlnWWWnM3Q3d7sqofBmC
LnOoYO1UzZwIH5CUz1RjQE7fA5xgC5XRyJQUNd66GeLK8529c3wulbb3cJuZXxlH
OSsRbA+jGqFSJ19ynW/RMZUaLgt0oxfFs5YfDsnx4yETAbt+bpcdPO6FNFKJaMdE
c4/+hiqAp40nQvWu82jnVpHvDKl2UADj/TvxmgNx+eNPq2EybsVTtInoSVEYqRXT
TZSQN10RrcsnjHoJIQ8SPPq42e3R49w8beA+Ex1jdYZvyGIOBov1DDzRrYsKdkeD
JIdTzxJ4+KA=
=eGhi
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to