debian/rules clean insufficient, *repeated* invocation of dpkg-buildpackage -rsudo fails.

Bug #7277 reported by Debian Bug Importer
4
Affects Status Importance Assigned to Milestone
exim4 (Debian)
Fix Released
Unknown
exim4 (Ubuntu)
Invalid
Low
Unassigned

Bug Description

Automatically imported from Debian bug report #262607 http://bugs.debian.org/262607

Revision history for this message
In , Marc Haber (mh+debian-packages) wrote : Re: Bug#262607: FTBFS when "gain-root" command gains real root

tags 262607 confirmed
thanks

On Sun, Aug 01, 2004 at 04:57:33AM +0200, Robert Millan wrote:
> Building exim4 when "gain-root" command gains real root (e.g. -rsudo)
> leaves the source tree in an unconsistent state. The next time build is
> attempted (either with -rsudo or -rfakeroot) it will fail with:
>
> [...]
> debian/rules build
> test -d debian/patched || install -d debian/patched
> dpatch apply-all
> [...]
> applying patch 34_eximstatsmanpage to ./ ...patch: **** can't open file src/eximstats.src : Permission denied
> failed.
> make: *** [patch-stamp] Error 1

I tried it with "dpkg-buildpackage -rsudo" twice, and I got a
different error message:
reverting patch 30_dontoverridecflags from ./ ... ok.
reverting patch 10_daemon_close_fds from ./ ... ok.
rm -rf patch-stamp patch-stampT debian/patched
 dpkg-source -b exim4-4.34
dpkg-source: building exim4 using existing exim4_4.34.orig.tar.gz
dpkg-source: building exim4 in exim4_4.34-4.diff.gz
diff: ./exim4-4.34/src/eximstats.src: Permission denied
dpkg-source: failure: diff on ./exim4-4.34/src/eximstats.src gave error exit status 2
[11/10]mh@lefler[chroot sid]:~/exim4/exim4-4.34$ ls -al src/eximstats.src
-rw------- 1 root root 88K Aug 1 06:39 src/eximstats.src

A cursory inspection of the package for chmod and umask calls didn't
give any results. But that might be due to the early time of day.

Greetings
Marc

--
-----------------------------------------------------------------------------
Marc Haber | "I don't trust Computers. They | Mailadresse im Header
Karlsruhe, Germany | lose things." Winona Ryder | Fon: *49 721 966 32 15
Nordisch by Nature | How to make an American Quilt | Fax: *49 721 966 31 29

Revision history for this message
In , Andreas Metzler (ametzler-downhill) wrote : retitle 262607 to debian/rules clean insufficient, *repeated* invocation of dpkg-buildpackage -rsudo fails.

retitle 262607 debian/rules clean insufficient, *repeated* invocation of dpkg-buildpackage -rsudo fails.

Revision history for this message
In , Andreas Metzler (ametzler-downhill) wrote : Re: Bug#262607: FTBFS when "gain-root" command gains real root

tags 262607 pending
# fixed in CVS
tags 262607 sarge-ignore
# I had asked vorlon on IRC.
thanks
On 2004-08-01 Robert Millan <email address hidden> wrote:
> Package: exim4
> Severity: serious

> Building exim4 when "gain-root" command gains real root (e.g. -rsudo)
> leaves the source tree in an unconsistent state. The next time build is
> attempted (either with -rsudo or -rfakeroot) it will fail with:

Hello,
This is caused by the fact that src/eximstats.src is shipped with 0600
permissions in the upstream tarball. We patch it at build time and
unpatch it at clean time, the latter runs as root|fakeroot, therefore
the file ends up being owned by root. Now, when dpkg-buildpackage
tries to generate a diff (running as non-root) it fails to read the
file. Boom.

I've commited this to CVS, fixing the issue:
----------------------
--- rules 14 Jul 2004 09:30:10 -0000 1.68
+++ rules 1 Aug 2004 10:29:54 -0000
@@ -234,6 +234,9 @@
 endif
        dh_clean podebconfize
        rm -rf Local
+ # fix broken (0600) permissions in original tarball
+ find OS doc scripts exim_monitor src util -perm -044 -or -print0 |\
+ xargs -0r chmod -c og+r
----------------------

I do not know yet when a upload will happen, I'll probably wait for
some translations to accumulate and will the push this together with
translations to tpu.
             cu andreas
--
"See, I told you they'd listen to Reason," [SPOILER] Svfurlr fnlf,
fuhggvat qbja gur juveyvat tha.
Neal Stephenson in "Snow Crash"

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Automatically imported from Debian bug report #262607 http://bugs.debian.org/262607

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-Id: <E1Br6XW-0003N8-00@bilbo>
Date: Sun, 01 Aug 2004 04:57:33 +0200
From: Robert Millan <email address hidden>
To: Debian Bug Tracking System <email address hidden>
Subject: FTBFS when "gain-root" command gains real root

Package: exim4
Severity: serious

Building exim4 when "gain-root" command gains real root (e.g. -rsudo)
leaves the source tree in an unconsistent state. The next time build is
attempted (either with -rsudo or -rfakeroot) it will fail with:

[...]
 debian/rules build
test -d debian/patched || install -d debian/patched
dpatch apply-all
[...]
applying patch 34_eximstatsmanpage to ./ ...patch: **** can't open file src/eximstats.src : Permission denied
 failed.
make: *** [patch-stamp] Error 1

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.26-1-686
Locale: LANG=C, LC_CTYPE=C (ignored: LC_ALL set to C)

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Sun, 1 Aug 2004 08:53:43 +0200
From: Marc Haber <email address hidden>
To: Robert Millan <email address hidden>, <email address hidden>
Subject: Re: Bug#262607: FTBFS when "gain-root" command gains real root

tags 262607 confirmed
thanks

On Sun, Aug 01, 2004 at 04:57:33AM +0200, Robert Millan wrote:
> Building exim4 when "gain-root" command gains real root (e.g. -rsudo)
> leaves the source tree in an unconsistent state. The next time build is
> attempted (either with -rsudo or -rfakeroot) it will fail with:
>
> [...]
> debian/rules build
> test -d debian/patched || install -d debian/patched
> dpatch apply-all
> [...]
> applying patch 34_eximstatsmanpage to ./ ...patch: **** can't open file src/eximstats.src : Permission denied
> failed.
> make: *** [patch-stamp] Error 1

I tried it with "dpkg-buildpackage -rsudo" twice, and I got a
different error message:
reverting patch 30_dontoverridecflags from ./ ... ok.
reverting patch 10_daemon_close_fds from ./ ... ok.
rm -rf patch-stamp patch-stampT debian/patched
 dpkg-source -b exim4-4.34
dpkg-source: building exim4 using existing exim4_4.34.orig.tar.gz
dpkg-source: building exim4 in exim4_4.34-4.diff.gz
diff: ./exim4-4.34/src/eximstats.src: Permission denied
dpkg-source: failure: diff on ./exim4-4.34/src/eximstats.src gave error exit status 2
[11/10]mh@lefler[chroot sid]:~/exim4/exim4-4.34$ ls -al src/eximstats.src
-rw------- 1 root root 88K Aug 1 06:39 src/eximstats.src

A cursory inspection of the package for chmod and umask calls didn't
give any results. But that might be due to the early time of day.

Greetings
Marc

--
-----------------------------------------------------------------------------
Marc Haber | "I don't trust Computers. They | Mailadresse im Header
Karlsruhe, Germany | lose things." Winona Ryder | Fon: *49 721 966 32 15
Nordisch by Nature | How to make an American Quilt | Fax: *49 721 966 31 29

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-Id: <email address hidden>
Date: Sun, 01 Aug 2004 10:28:46 +0200
From: Andreas Metzler <email address hidden>
To: <email address hidden>
Subject: retitle 262607 to debian/rules clean insufficient,
 *repeated* invocation of dpkg-buildpackage -rsudo fails.

retitle 262607 debian/rules clean insufficient, *repeated* invocation of dpkg-buildpackage -rsudo fails.

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Sun, 1 Aug 2004 12:43:32 +0200
From: Andreas Metzler <email address hidden>
To: Robert Millan <email address hidden>, <email address hidden>
Subject: Re: Bug#262607: FTBFS when "gain-root" command gains real root

tags 262607 pending
# fixed in CVS
tags 262607 sarge-ignore
# I had asked vorlon on IRC.
thanks
On 2004-08-01 Robert Millan <email address hidden> wrote:
> Package: exim4
> Severity: serious

> Building exim4 when "gain-root" command gains real root (e.g. -rsudo)
> leaves the source tree in an unconsistent state. The next time build is
> attempted (either with -rsudo or -rfakeroot) it will fail with:

Hello,
This is caused by the fact that src/eximstats.src is shipped with 0600
permissions in the upstream tarball. We patch it at build time and
unpatch it at clean time, the latter runs as root|fakeroot, therefore
the file ends up being owned by root. Now, when dpkg-buildpackage
tries to generate a diff (running as non-root) it fails to read the
file. Boom.

I've commited this to CVS, fixing the issue:
----------------------
--- rules 14 Jul 2004 09:30:10 -0000 1.68
+++ rules 1 Aug 2004 10:29:54 -0000
@@ -234,6 +234,9 @@
 endif
        dh_clean podebconfize
        rm -rf Local
+ # fix broken (0600) permissions in original tarball
+ find OS doc scripts exim_monitor src util -perm -044 -or -print0 |\
+ xargs -0r chmod -c og+r
----------------------

I do not know yet when a upload will happen, I'll probably wait for
some translations to accumulate and will the push this together with
translations to tpu.
             cu andreas
--
"See, I told you they'd listen to Reason," [SPOILER] Svfurlr fnlf,
fuhggvat qbja gur juveyvat tha.
Neal Stephenson in "Snow Crash"

Revision history for this message
Matt Zimmerman (mdz) wrote :

Not severe for Warty builds

Revision history for this message
In , Andreas Metzler (ametzler) wrote : Bug#262607: fixed in exim4 4.34-5
Download full text (3.7 KiB)

Source: exim4
Source-Version: 4.34-5

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

exim4-base_4.34-5_i386.deb
  to pool/main/e/exim4/exim4-base_4.34-5_i386.deb
exim4-config_4.34-5_all.deb
  to pool/main/e/exim4/exim4-config_4.34-5_all.deb
exim4-daemon-heavy_4.34-5_i386.deb
  to pool/main/e/exim4/exim4-daemon-heavy_4.34-5_i386.deb
exim4-daemon-light_4.34-5_i386.deb
  to pool/main/e/exim4/exim4-daemon-light_4.34-5_i386.deb
exim4_4.34-5.diff.gz
  to pool/main/e/exim4/exim4_4.34-5.diff.gz
exim4_4.34-5.dsc
  to pool/main/e/exim4/exim4_4.34-5.dsc
exim4_4.34-5_all.deb
  to pool/main/e/exim4/exim4_4.34-5_all.deb
eximon4_4.34-5_i386.deb
  to pool/main/e/exim4/eximon4_4.34-5_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 address hidden>,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Metzler <email address hidden> (supplier of updated exim4 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 address hidden>)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 11 Aug 2004 09:17:35 +0200
Source: exim4
Binary: eximon4 exim4-daemon-custom exim4-daemon-heavy exim4-base exim4 exim4-daemon-light exim4-config
Architecture: source i386 all
Version: 4.34-5
Distribution: unstable
Urgency: low
Maintainer: Exim4 Maintainers <email address hidden>
Changed-By: Andreas Metzler <email address hidden>
Description:
 exim4 - An MTA (Mail Transport Agent)
 exim4-base - EXperimental Internal Mailer -- a Mail Transport Agent
 exim4-config - Debian configuration for exim4
 exim4-daemon-heavy - Exim (v4) with extended features, including exiscan-acl
 exim4-daemon-light - Lightweight version of the Exim (v4) MTA
 eximon4 - X monitor for the Exim (v4) mail transport agent
Closes: 261912 261994 262607 263665 264842
Changes:
 exim4 (4.34-5) unstable; urgency=low
 .
   * The let's test the changes before we upload to tpu release.
   * updated translations:
     - eu (Basque) by Piarres Beobide Egaña. (Closes: #261912)
     - ca (Catalan) by Jordi Mallach. (Closes: #264842)
   * Fix broken permissions (not readable for group/other) in upstream tarball
     in clean target (thanks to Steve Langasek for help with find). This fixes
     "dpkg-buildpackage -rsudo && dpkg-buildpackage -rsudo". (Closes: #262607)
   * Stop daemon in "exim4-base.postrm remove". - Under specific circumstances
     apt seems to purge -base before removing the depending package (-daemon),
     therefore the daemon would not be stopped. (Closes: #261994)
   * Build against libgnutls11-dev. (Closes: #263665)
Files:
 10fe0aaed0540070a0d4f996ea7144a3 1062 mail important exim4_4.34-5.dsc
 770a5aec1d26a1acd9a2fc1e29aebeea 457486 mail important exim4_4.34-5.diff.gz
 d804eb3d91cf95597414370cb1fcd46b 784228 mail important exim...

Read more...

Revision history for this message
In , Andreas Metzler (ametzler-downhill) wrote : repening bugs that we will need to refix for sarge via tpu

# these bugs are fixed for sid now, but we want them fixed in sarge
reopen 261912
reopen 261994
reopen 262607
reopen 263665
reopen 264842
tags 261912 sarge
tags 261994 sarge
tags 262607 sarge
tags 263665 sarge
tags 264842 sarge

Revision history for this message
Debian Bug Importer (debzilla) wrote :
Download full text (3.9 KiB)

Message-Id: <email address hidden>
Date: Wed, 11 Aug 2004 04:02:10 -0400
From: Andreas Metzler <email address hidden>
To: <email address hidden>
Subject: Bug#262607: fixed in exim4 4.34-5

Source: exim4
Source-Version: 4.34-5

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

exim4-base_4.34-5_i386.deb
  to pool/main/e/exim4/exim4-base_4.34-5_i386.deb
exim4-config_4.34-5_all.deb
  to pool/main/e/exim4/exim4-config_4.34-5_all.deb
exim4-daemon-heavy_4.34-5_i386.deb
  to pool/main/e/exim4/exim4-daemon-heavy_4.34-5_i386.deb
exim4-daemon-light_4.34-5_i386.deb
  to pool/main/e/exim4/exim4-daemon-light_4.34-5_i386.deb
exim4_4.34-5.diff.gz
  to pool/main/e/exim4/exim4_4.34-5.diff.gz
exim4_4.34-5.dsc
  to pool/main/e/exim4/exim4_4.34-5.dsc
exim4_4.34-5_all.deb
  to pool/main/e/exim4/exim4_4.34-5_all.deb
eximon4_4.34-5_i386.deb
  to pool/main/e/exim4/eximon4_4.34-5_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 address hidden>,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Metzler <email address hidden> (supplier of updated exim4 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 address hidden>)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 11 Aug 2004 09:17:35 +0200
Source: exim4
Binary: eximon4 exim4-daemon-custom exim4-daemon-heavy exim4-base exim4 exim4-daemon-light exim4-config
Architecture: source i386 all
Version: 4.34-5
Distribution: unstable
Urgency: low
Maintainer: Exim4 Maintainers <email address hidden>
Changed-By: Andreas Metzler <email address hidden>
Description:
 exim4 - An MTA (Mail Transport Agent)
 exim4-base - EXperimental Internal Mailer -- a Mail Transport Agent
 exim4-config - Debian configuration for exim4
 exim4-daemon-heavy - Exim (v4) with extended features, including exiscan-acl
 exim4-daemon-light - Lightweight version of the Exim (v4) MTA
 eximon4 - X monitor for the Exim (v4) mail transport agent
Closes: 261912 261994 262607 263665 264842
Changes:
 exim4 (4.34-5) unstable; urgency=low
 .
   * The let's test the changes before we upload to tpu release.
   * updated translations:
     - eu (Basque) by Piarres Beobide Egaña. (Closes: #261912)
     - ca (Catalan) by Jordi Mallach. (Closes: #264842)
   * Fix broken permissions (not readable for group/other) in upstream tarball
     in clean target (thanks to Steve Langasek for help with find). This fixes
     "dpkg-buildpackage -rsudo && dpkg-buildpackage -rsudo". (Closes: #262607)
   * Stop daemon in "exim4-base.postrm remove". - Under specific circumstances
     apt seems to purge -base before removing the depending package (-daemon),
     therefore the daemon would not be stopped. (Closes: #261994)
   * Build against libgnutls11-dev. (Closes: #263665)
Files: ...

Read more...

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Wed, 11 Aug 2004 10:31:37 +0200
From: Andreas Metzler <email address hidden>
To: <email address hidden>
Subject: repening bugs that we will need to refix for sarge via tpu

# these bugs are fixed for sid now, but we want them fixed in sarge
reopen 261912
reopen 261994
reopen 262607
reopen 263665
reopen 264842
tags 261912 sarge
tags 261994 sarge
tags 262607 sarge
tags 263665 sarge
tags 264842 sarge

Revision history for this message
Fabio Massimo Di Nitto (fabbione) wrote :

Fixed with exim4 ubuntu upload

Revision history for this message
In , Andreas Metzler (ametzler) wrote : Bug#262607: fixed in exim4 4.34-4sarge1
Download full text (4.3 KiB)

Source: exim4
Source-Version: 4.34-4sarge1

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

exim4-base_4.34-4sarge1_i386.deb
  to pool/main/e/exim4/exim4-base_4.34-4sarge1_i386.deb
exim4-config_4.34-4sarge1_all.deb
  to pool/main/e/exim4/exim4-config_4.34-4sarge1_all.deb
exim4-daemon-heavy_4.34-4sarge1_i386.deb
  to pool/main/e/exim4/exim4-daemon-heavy_4.34-4sarge1_i386.deb
exim4-daemon-light_4.34-4sarge1_i386.deb
  to pool/main/e/exim4/exim4-daemon-light_4.34-4sarge1_i386.deb
exim4_4.34-4sarge1.diff.gz
  to pool/main/e/exim4/exim4_4.34-4sarge1.diff.gz
exim4_4.34-4sarge1.dsc
  to pool/main/e/exim4/exim4_4.34-4sarge1.dsc
exim4_4.34-4sarge1_all.deb
  to pool/main/e/exim4/exim4_4.34-4sarge1_all.deb
eximon4_4.34-4sarge1_i386.deb
  to pool/main/e/exim4/eximon4_4.34-4sarge1_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 address hidden>,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Metzler <email address hidden> (supplier of updated exim4 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 address hidden>)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat, 28 Aug 2004 10:32:28 +0200
Source: exim4
Binary: eximon4 exim4-daemon-custom exim4-daemon-heavy exim4-base exim4 exim4-daemon-light exim4-config
Architecture: source i386 all
Version: 4.34-4sarge1
Distribution: testing-proposed-updates
Urgency: low
Maintainer: Exim4 Maintainers <email address hidden>
Changed-By: Andreas Metzler <email address hidden>
Description:
 exim4 - An MTA (Mail Transport Agent)
 exim4-base - EXperimental Internal Mailer -- a Mail Transport Agent
 exim4-config - Debian configuration for exim4
 exim4-daemon-heavy - Exim (v4) with extended features, including exiscan-acl
 exim4-daemon-light - Lightweight version of the Exim (v4) MTA
 eximon4 - X monitor for the Exim (v4) mail transport agent
Closes: 261912 261994 262607 264842 267524 267603 268168
Changes:
 exim4 (4.34-4sarge1) testing-proposed-updates; urgency=low
 .
   * Upload to tpu because it looks like switching to gnutls11 will not be
     possible for sarge. This is 4.34-5 with these changes:
     - use gnutls10
     - post 4.34-5 translation updates and additions. (zh_TW, bg and nl).
   * zh_TW translation of debconf templates by Tetralet. (Closes: #267524)
   * bg (Bulgarian) translation of debconf templates by Ognyan Kulev
     (Closes: #267603)
   * updated translations:
     - eu (Basque) by Piarres Beobide Egaña. (Closes: #261912)
     - ca (Catalan) by Jordi Mallach. (Closes: #264842)
     - nl (Dutch) by Bart Cornelis. (Closes: #268168)
   * Fix broken permissions (not readable for group/other) in upstream tarball
     in clean target (thanks to Steve Langasek for help with find). This fixes
     "dpkg-buildpackage -rsu...

Read more...

Revision history for this message
Debian Bug Importer (debzilla) wrote :
Download full text (4.5 KiB)

Message-Id: <email address hidden>
Date: Sat, 28 Aug 2004 05:32:06 -0400
From: Andreas Metzler <email address hidden>
To: <email address hidden>
Subject: Bug#262607: fixed in exim4 4.34-4sarge1

Source: exim4
Source-Version: 4.34-4sarge1

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

exim4-base_4.34-4sarge1_i386.deb
  to pool/main/e/exim4/exim4-base_4.34-4sarge1_i386.deb
exim4-config_4.34-4sarge1_all.deb
  to pool/main/e/exim4/exim4-config_4.34-4sarge1_all.deb
exim4-daemon-heavy_4.34-4sarge1_i386.deb
  to pool/main/e/exim4/exim4-daemon-heavy_4.34-4sarge1_i386.deb
exim4-daemon-light_4.34-4sarge1_i386.deb
  to pool/main/e/exim4/exim4-daemon-light_4.34-4sarge1_i386.deb
exim4_4.34-4sarge1.diff.gz
  to pool/main/e/exim4/exim4_4.34-4sarge1.diff.gz
exim4_4.34-4sarge1.dsc
  to pool/main/e/exim4/exim4_4.34-4sarge1.dsc
exim4_4.34-4sarge1_all.deb
  to pool/main/e/exim4/exim4_4.34-4sarge1_all.deb
eximon4_4.34-4sarge1_i386.deb
  to pool/main/e/exim4/eximon4_4.34-4sarge1_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 address hidden>,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Metzler <email address hidden> (supplier of updated exim4 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 address hidden>)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat, 28 Aug 2004 10:32:28 +0200
Source: exim4
Binary: eximon4 exim4-daemon-custom exim4-daemon-heavy exim4-base exim4 exim4-daemon-light exim4-config
Architecture: source i386 all
Version: 4.34-4sarge1
Distribution: testing-proposed-updates
Urgency: low
Maintainer: Exim4 Maintainers <email address hidden>
Changed-By: Andreas Metzler <email address hidden>
Description:
 exim4 - An MTA (Mail Transport Agent)
 exim4-base - EXperimental Internal Mailer -- a Mail Transport Agent
 exim4-config - Debian configuration for exim4
 exim4-daemon-heavy - Exim (v4) with extended features, including exiscan-acl
 exim4-daemon-light - Lightweight version of the Exim (v4) MTA
 eximon4 - X monitor for the Exim (v4) mail transport agent
Closes: 261912 261994 262607 264842 267524 267603 268168
Changes:
 exim4 (4.34-4sarge1) testing-proposed-updates; urgency=low
 .
   * Upload to tpu because it looks like switching to gnutls11 will not be
     possible for sarge. This is 4.34-5 with these changes:
     - use gnutls10
     - post 4.34-5 translation updates and additions. (zh_TW, bg and nl).
   * zh_TW translation of debconf templates by Tetralet. (Closes: #267524)
   * bg (Bulgarian) translation of debconf templates by Ognyan Kulev
     (Closes: #267603)
   * updated translations:
     - eu (Basque) by Piarres Beobide Egaña. (Closes: #261912)
     - ca (Catalan) by Jordi Mallach. (Closes: #264842)
     - nl (Dutch) by Bart...

Read more...

Changed in exim4:
status: Unknown → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.