Your message dated Mon, 01 Mar 2010 10:55:48 +0000
with message-id <[email protected]>
and subject line Bug#563802: fixed in spamassassin 3.3.0-2
has caused the Debian Bug report #563802,
regarding cron.daily/spamassassin does not catch sa-compile errors
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.)
--
563802: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=563802
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: spamassassin
Version: 3.2.5-2+lenny1
Severity: normal
/etc/cron.daily/spamassassin includes:
------------------------------------------------------------
# Compile, if rules have previously been compiled, and it's possible
if [ -x /usr/bin/re2c -a -x /usr/bin/sa-compile -a -d
/var/lib/spamassassin/compiled ]; then
sa-compile > /dev/null 2>&1
fi
------------------------------------------------------------
If sa-compile fails for any reason, there is a) no indication to anyone and b)
whatever updates sa-update has downloaded will not take effect.
At the very least, this should be changed to something like:
------------------------------------------------------------
# Compile, if rules have previously been compiled, and it's possible
if [ -x /usr/bin/re2c -a -x /usr/bin/sa-compile -a -d
/var/lib/spamassassin/compiled ]; then
sa-compile > /dev/null 2>&1
[ $? -eq 0 ] || mail root -s "sa-compile failed in
/etc/cron.daily/spamassassin"
fi
------------------------------------------------------------
Of course, the above could be polished considerably...
-- System Information:
Debian Release: 5.0.3
APT prefers stable
APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages spamassassin depends on:
ii libdigest-sha1-perl 2.11-2+b1 NIST SHA-1 message digest algorith
ii libhtml-parser-perl 3.56-1+lenny1 A collection of modules that parse
ii libnet-dns-perl 0.63-2 Perform DNS queries from a Perl sc
ii libsocket6-perl 0.20-1 Perl extensions for IPv6
ii libsys-hostname-long-per 1.4-2 Figure out the long (fully-qualifi
ii libwww-perl 5.813-1 WWW client/server library for Perl
ii perl 5.10.0-19lenny2 Larry Wall's Practical Extraction
ii perl-modules [libarchive 5.10.0-19lenny2 Core Perl modules
Versions of packages spamassassin recommends:
ii gcc 4:4.3.2-2 The GNU C compiler
ii gnupg 1.4.9-3+lenny1 GNU privacy guard - a free PGP rep
ii libc6-dev 2.7-18 GNU C Library: Development Librari
ii libio-socket-inet6-perl 2.54-1 Object interface for AF_INET6 doma
ii libmail-spf-perl 2.005-1 Perl implementation of Sender Poli
ii libsys-syslog-perl 0.26-1 Perl interface to the UNIX syslog(
ii make 3.81-5 The GNU version of the "make" util
ii re2c 0.13.5-1 tool for generating fast C-based r
ii spamc 3.2.5-2+lenny1 Client for SpamAssassin spam filte
Versions of packages spamassassin suggests:
ii libcompress-zlib-p 2.012-1 Perl module for creation and manip
ii libdbi-perl 1.605-1 Perl5 database interface by Tim Bu
pn libio-socket-ssl-p <none> (no description available)
pn libmail-dkim-perl <none> (no description available)
pn libnet-ident-perl <none> (no description available)
ii pyzor 1:0.4.0+cvs20030201-8 spam-catcher using a collaborative
ii razor 1:2.85-1 spam-catcher using a collaborative
-- no debconf information
--- End Message ---
--- Begin Message ---
Source: spamassassin
Source-Version: 3.3.0-2
We believe that the bug you reported is fixed in the latest version of
spamassassin, which is due to be installed in the Debian FTP archive:
spamassassin_3.3.0-2.debian.tar.gz
to main/s/spamassassin/spamassassin_3.3.0-2.debian.tar.gz
spamassassin_3.3.0-2.dsc
to main/s/spamassassin/spamassassin_3.3.0-2.dsc
spamassassin_3.3.0-2_all.deb
to main/s/spamassassin/spamassassin_3.3.0-2_all.deb
spamc_3.3.0-2_i386.deb
to main/s/spamassassin/spamc_3.3.0-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.
Noah Meyerhans <[email protected]> (supplier of updated spamassassin 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: Mon, 01 Mar 2010 00:57:24 -0800
Source: spamassassin
Binary: spamassassin spamc
Architecture: source all i386
Version: 3.3.0-2
Distribution: unstable
Urgency: low
Maintainer: Noah Meyerhans <[email protected]>
Changed-By: Noah Meyerhans <[email protected]>
Description:
spamassassin - Perl-based spam filter using text analysis
spamc - Client for SpamAssassin spam filtering daemon
Closes: 315961 563802 565227 567205 570734
Changes:
spamassassin (3.3.0-2) unstable; urgency=low
.
* Document the fact that auto-whitelist is now disabled by default and that
this may affect upgrades from version <3.3.0 (Closes: #570734)
* Stop ignoring output from sa-compile and instead use its undocumented
"quiet" option. (Closes: #563802)
* Don't ignore output from /etc/init.d/spamassassin when reloading spamd
after sa-update downloads updates (Closes: #565227)
* Run the contents of /etc/spamassassin/sa-update-hooks.d/ using
run-parts following a successful download of new rules via sa-update
in the daily cron script. (Closes: #315961, #567205)
* Fix a problem in debian/rules where manpage generation for sa-awl and
sa-check_spamd happened in the wrong rule.
* Bump standards compliance to 3.8.4 (no changes needed)
Checksums-Sha1:
81fc2f56a7f3c06c20f08628bbe4a6bad788a171 1669 spamassassin_3.3.0-2.dsc
b41a947d31c0d184b4fedd507b3e8d69ad1e7fba 38279
spamassassin_3.3.0-2.debian.tar.gz
5e8255b2ae50358143dfcbe23b9fe93d20940354 1354044 spamassassin_3.3.0-2_all.deb
c2294c9b730adff88ff79dd408a02944689dafc7 197438 spamc_3.3.0-2_i386.deb
Checksums-Sha256:
6e3421bfe10c144edc2a88e2f0cc160a708c514eb259fcf4a81a9cec01d13f56 1669
spamassassin_3.3.0-2.dsc
0d919b3ea0407ea8b796af826f78f41fccdf1b1d3657b0cf6c92b5f16b8a9928 38279
spamassassin_3.3.0-2.debian.tar.gz
5c7629c92122487f6d413c850455dc0c770d069ca7c5bfecb9b08d5448599c75 1354044
spamassassin_3.3.0-2_all.deb
1058cb3eb97fa4457688030485022de6db2c9aeffad48c216390fed4794424e2 197438
spamc_3.3.0-2_i386.deb
Files:
9b87a87879f30d7cc0dc200fb4062c7a 1669 mail optional spamassassin_3.3.0-2.dsc
dcd1cdce608d760dd69c8725e68933fa 38279 mail optional
spamassassin_3.3.0-2.debian.tar.gz
69e6a227e1e3659d4dfc841964b60f5a 1354044 mail optional
spamassassin_3.3.0-2_all.deb
1e39dd70c3c1f2eeabf49549495ba632 197438 mail optional spamc_3.3.0-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iD8DBQFLi4VMYrVLjBFATsMRArTKAJ95jvzBm0kZwnyvxSyhGhUX0CHDcACeOZtC
FaRcCEFus1noYUP8MrFn28U=
=QOtu
-----END PGP SIGNATURE-----
--- End Message ---