--- bogofilter-1.2.0.orig/debian/bogofilter-sqlite.prerm +++ bogofilter-1.2.0/debian/bogofilter-sqlite.prerm @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e + +util=sqlite + +case "$1" in + remove|deconfigure) + if update-alternatives --list bogofilter | grep -q bogofilter-${util}; then + update-alternatives --quiet --remove bogofilter "/usr/bin/bogofilter-${util}" + fi + ;; + *) + ;; +esac --- bogofilter-1.2.0.orig/debian/changelog.bogofilter-tokyocabinet +++ bogofilter-1.2.0/debian/changelog.bogofilter-tokyocabinet @@ -0,0 +1,11 @@ +bogofilter (1.2.0-3) unstable; urgency=low + + * New maintainer. closes: #524743. + * Maintain a separate Debian changelog for every binary package. + closes: #524191. + * Allow the system administrator to choose a db backend, other than the + default bdb, using update-alternatives. closes: #315318. + * Add symbolic links so that manpages are accessible regardless of the db + backend in use. closes: #437718. + + -- Serafeim Zanikolas Wed, 06 May 2009 21:03:34 +0200 --- bogofilter-1.2.0.orig/debian/conffiles +++ bogofilter-1.2.0/debian/conffiles @@ -0,0 +1 @@ +/etc/bogofilter.cf --- bogofilter-1.2.0.orig/debian/rules +++ bogofilter-1.2.0/debian/rules @@ -0,0 +1,286 @@ +#!/usr/bin/make -f + +CFLAGS = -Wall -g +INSTALL = install +INSTALL_FILE = $(INSTALL) -p -o root -g root -m 644 +INSTALL_PROGRAM = $(INSTALL) -p -o root -g root -m 755 +INSTALL_SCRIPT = $(INSTALL) -p -o root -g root -m 755 +INSTALL_DIR = $(INSTALL) -p -d -o root -g root -m 755 +MAN_PATH = usr/share/man/man1 + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) +CFLAGS += -O0 +else +ifeq ($(DEB_HOST_ARCH),s390) +CFLAGS += -O1 +else +CFLAGS += -O2 +endif +endif +#ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) +#INSTALL_PROGRAM += -s +#endif + +configure: configure-stamp +configure-stamp: + $(checkdir) + + $(INSTALL) -d obj-db obj-qdbm obj-sqlite obj-tokyocabinet + + cd obj-db && CFLAGS="$(CFLAGS)" ../configure --with-database=db \ + --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc AWK=awk + cd obj-qdbm && CPPFLAGS="-I/usr/include/qdbm" CFLAGS="$(CFLAGS)" ../configure --with-database=qdbm --program-suffix=-qdbm \ + --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc AWK=awk + cd obj-sqlite && CFLAGS="$(CFLAGS)" ../configure --with-database=sqlite --program-suffix=-sqlite \ + --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc AWK=awk && \ + sed -i 's/^INTEGRITY_TESTS.*/INTEGRITY_TESTS=t.lock1/' src/tests/Makefile + cd obj-tokyocabinet && CFLAGS="$(CFLAGS)" ../configure --with-database=tokyocabinet --program-suffix=-tokyocabinet \ + --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc AWK=awk + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + $(checkdir) + + cd obj-db && $(MAKE) + cd obj-qdbm && $(MAKE) + cd obj-sqlite && $(MAKE) + cd obj-tokyocabinet && $(MAKE) + + touch build-stamp + +clean: checkroot + $(checkdir) + rm -f build-stamp configure-stamp debian/bogofilter.substvars \ + debian/files debian/bogofilter-bdb.substvars \ + debian/bogofilter-qdbm.substvars \ + debian/bogofilter-sqlite.substvars \ + debian/bogofilter-tokyocabinet.substvars + rm -rf debian/bogofilter debian/bogofilter-bdb \ + debian/bogofilter-qdbm debian/bogofilter-sqlite \ + debian/bogofilter-tokyocabinet debian/bogofilter-common + + -cd obj-db && $(MAKE) clean + rm -rf obj-db obj-qdbm obj-sqlite obj-tokyocabinet + +PROGRAMS = bf_compact bf_copy bf_tar bogofilter bogolexer bogotune bogoupgrade bogoutil +install: build checkroot + $(checkdir) + + $(INSTALL_DIR) debian/bogofilter debian/bogofilter-bdb/usr \ + debian/bogofilter-qdbm/usr \ + debian/bogofilter-sqlite/usr \ + debian/bogofilter-tokyocabinet/usr \ + debian/bogofilter-common \ + debian/tmp \ + debian/bogofilter-bdb/DEBIAN \ + debian/bogofilter-qdbm/DEBIAN \ + debian/bogofilter-sqlite/DEBIAN \ + debian/bogofilter-tokyocabinet/DEBIAN + + # install *.{prerm,postinst} scripts + $(INSTALL_PROGRAM) debian/bogofilter-bdb.prerm debian/bogofilter-bdb/DEBIAN/prerm + $(INSTALL_PROGRAM) debian/bogofilter-qdbm.prerm debian/bogofilter-qdbm/DEBIAN/prerm + $(INSTALL_PROGRAM) debian/bogofilter-sqlite.prerm debian/bogofilter-sqlite/DEBIAN/prerm + $(INSTALL_PROGRAM) debian/bogofilter-tokyocabinet.prerm debian/bogofilter-tokyocabinet/DEBIAN/prerm + # + $(INSTALL_PROGRAM) debian/bogofilter-bdb.postinst debian/bogofilter-bdb/DEBIAN/postinst + $(INSTALL_PROGRAM) debian/bogofilter-qdbm.postinst debian/bogofilter-qdbm/DEBIAN/postinst + $(INSTALL_PROGRAM) debian/bogofilter-sqlite.postinst debian/bogofilter-sqlite/DEBIAN/postinst + $(INSTALL_PROGRAM) debian/bogofilter-tokyocabinet.postinst debian/bogofilter-tokyocabinet/DEBIAN/postinst + + # Add here commands to install the package into debian/bogofilter. + cd obj-db && $(MAKE) install DESTDIR=$(CURDIR)/debian/bogofilter-common \ + INSTALL_PROGRAM="$(INSTALL_PROGRAM)" + + mv debian/bogofilter-common/usr/bin debian/bogofilter-bdb/usr + + for i in ${PROGRAMS}; do \ + mv debian/bogofilter-bdb/usr/bin/$$i debian/bogofilter-bdb/usr/bin/$${i}-bdb; \ + done + + + cd obj-qdbm && $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp \ + INSTALL_PROGRAM="$(INSTALL_PROGRAM)" + mv debian/tmp/usr/bin debian/bogofilter-qdbm/usr + + cd obj-sqlite && $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp \ + INSTALL_PROGRAM="$(INSTALL_PROGRAM)" + mv debian/tmp/usr/bin debian/bogofilter-sqlite/usr + + cd obj-tokyocabinet && $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp \ + INSTALL_PROGRAM="$(INSTALL_PROGRAM)" + mv debian/tmp/usr/bin debian/bogofilter-tokyocabinet/usr + + rm -rf debian/tmp + +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + strip --remove-section=.comment --remove-section=.note \ + debian/bogofilter-qdbm/usr/bin/bogoQDBMupgrade-qdbm \ + debian/bogofilter-bdb/usr/bin/bogofilter-bdb \ + debian/bogofilter-bdb/usr/bin/bogoutil-bdb \ + debian/bogofilter-bdb/usr/bin/bogolexer-bdb \ + debian/bogofilter-bdb/usr/bin/bogotune-bdb \ + debian/bogofilter-*/usr/bin/bogofilter-* \ + debian/bogofilter-*/usr/bin/bogolexer-* \ + debian/bogofilter-*/usr/bin/bogotune-* \ + debian/bogofilter-*/usr/bin/bogoutil-* +endif + +check: + $(checkdir) + cd obj-db && $(MAKE) check + cd obj-qdbm && $(MAKE) check + cd obj-sqlite && $(MAKE) check + cd obj-tokyocabinet && $(MAKE) check + +# Build architecture-independent files here. +binary-indep: build install checkroot + $(checkdir) + $(INSTALL_DIR) debian/bogofilter-common/usr/share/doc/bogofilter-common/examples/contrib \ + debian/bogofilter-common/etc debian/bogofilter-common/usr/share/doc/bogofilter-common \ + debian/bogofilter-common/DEBIAN + $(INSTALL_DIR) debian/bogofilter-bdb/usr/share/doc/bogofilter-bdb \ + debian/bogofilter-qdbm/usr/share/doc/bogofilter-qdbm \ + debian/bogofilter-sqlite/usr/share/doc/bogofilter-sqlite \ + debian/bogofilter-tokyocabinet/usr/share/doc/bogofilter-tokyocabinet + $(INSTALL_DIR) debian/bogofilter/usr/share/doc \ + debian/bogofilter/usr/share/lintian/overrides \ + debian/bogofilter-bdb/usr/share/man/man1 \ + debian/bogofilter-qdbm/usr/share/man/man1 \ + debian/bogofilter-sqlite/usr/share/man/man1 \ + debian/bogofilter-tokyocabinet/usr/share/man/man1 + + $(INSTALL_FILE) debian/lintian_override.bogofilter debian/bogofilter/usr/share/lintian/overrides/bogofilter + $(INSTALL_FILE) README doc/bogofilter-tuning.HOWTO.html TODO AUTHORS \ + debian/README.Debian \ + RELEASE.NOTES* doc/README.validation \ + debian/copyright doc/bogofilter-faq.html \ + doc/integrating* \ + debian/bogofilter-common/usr/share/doc/bogofilter-common + $(INSTALL_FILE) debian/copyright debian/bogofilter-bdb/usr/share/doc/bogofilter-bdb/ + $(INSTALL_FILE) debian/copyright debian/bogofilter-sqlite/usr/share/doc/bogofilter-sqlite/ + $(INSTALL_FILE) debian/copyright debian/bogofilter-tokyocabinet/usr/share/doc/bogofilter-tokyocabinet/ + $(INSTALL_FILE) debian/copyright debian/bogofilter-qdbm/usr/share/doc/bogofilter-qdbm/ + + $(INSTALL_FILE) debian/changelog.bogofilter-bdb debian/bogofilter-bdb/usr/share/doc/bogofilter-bdb/changelog + $(INSTALL_FILE) debian/changelog.bogofilter-sqlite debian/bogofilter-sqlite/usr/share/doc/bogofilter-sqlite/changelog + $(INSTALL_FILE) debian/changelog.bogofilter-qdbm debian/bogofilter-qdbm/usr/share/doc/bogofilter-qdbm/changelog + $(INSTALL_FILE) debian/changelog.bogofilter-tokyocabinet debian/bogofilter-tokyocabinet/usr/share/doc/bogofilter-tokyocabinet/changelog + + $(INSTALL_FILE) doc/README.db debian/bogofilter-bdb/usr/share/doc/bogofilter-bdb/ + $(INSTALL_FILE) doc/README.sqlite debian/bogofilter-sqlite/usr/share/doc/bogofilter-sqlite/ + + # -common docs + $(INSTALL_FILE) NEWS \ + debian/bogofilter-common/usr/share/doc/bogofilter-common/changelog + $(INSTALL_FILE) debian/changelog \ + debian/bogofilter-common/usr/share/doc/bogofilter-common/changelog.Debian + $(INSTALL_FILE) contrib/* \ + debian/bogofilter-common/usr/share/doc/bogofilter-common/examples/contrib + $(INSTALL_FILE) debian/NEWS.Debian.bogofilter-common debian/bogofilter-common/usr/share/doc/bogofilter-common/NEWS.Debian + mv debian/bogofilter-common/usr/share/doc/bogofilter-common/examples/contrib/*.example \ + debian/bogofilter-common/usr/share/doc/bogofilter-common/examples + chmod 755 debian/bogofilter-common/usr/share/doc/bogofilter-common/examples/contrib/bogominitrain.pl + + # docs for bogofilter-bdb + $(INSTALL_FILE) debian/NEWS.Debian.bogofilter-bdb debian/bogofilter-bdb/usr/share/doc/bogofilter-bdb/NEWS.Debian + $(INSTALL_FILE) debian/changelog.bogofilter-bdb debian/bogofilter-bdb/usr/share/doc/bogofilter-bdb/changelog.Debian + # docs for bogofilter-qdbm + $(INSTALL_FILE) debian/NEWS.Debian.bogofilter-qdbm debian/bogofilter-qdbm/usr/share/doc/bogofilter-qdbm/NEWS.Debian + $(INSTALL_FILE) debian/changelog.bogofilter-qdbm debian/bogofilter-qdbm/usr/share/doc/bogofilter-qdbm/changelog.Debian + # docs for bogofilter-sqlite + $(INSTALL_FILE) debian/changelog.bogofilter-sqlite debian/bogofilter-sqlite/usr/share/doc/bogofilter-sqlite/changelog.Debian + # docs for bogofilter-tokyocabinet + $(INSTALL_FILE) debian/changelog.bogofilter-tokyocabinet debian/bogofilter-tokyocabinet/usr/share/doc/bogofilter-tokyocabinet/changelog.Debian + + + gzip -9f debian/bogofilter-common/usr/share/doc/bogofilter-common/NEWS.Debian + gzip -9f debian/bogofilter-bdb/usr/share/doc/bogofilter-bdb/NEWS.Debian + gzip -9f debian/bogofilter-qdbm/usr/share/doc/bogofilter-qdbm/NEWS.Debian + gzip -9f debian/bogofilter-bdb/usr/share/doc/bogofilter-bdb/changelog.Debian + gzip -9f debian/bogofilter-qdbm/usr/share/doc/bogofilter-qdbm/changelog.Debian + gzip -9f debian/bogofilter-sqlite/usr/share/doc/bogofilter-sqlite/changelog.Debian + gzip -9f debian/bogofilter-tokyocabinet/usr/share/doc/bogofilter-tokyocabinet/changelog.Debian + gzip -9f debian/bogofilter-bdb/usr/share/doc/bogofilter-bdb/changelog + gzip -9f debian/bogofilter-qdbm/usr/share/doc/bogofilter-qdbm/changelog + gzip -9f debian/bogofilter-sqlite/usr/share/doc/bogofilter-sqlite/changelog + gzip -9f debian/bogofilter-tokyocabinet/usr/share/doc/bogofilter-tokyocabinet/changelog + + chmod 644 debian/bogofilter-common/usr/share/man/man1/*.1 debian/bogofilter-common/usr/share/doc/bogofilter-common/changelog.Debian debian/bogofilter-common/usr/share/doc/bogofilter-common/changelog + gzip -9f debian/bogofilter-common/usr/share/man/man1/*.1 debian/bogofilter-common/usr/share/doc/bogofilter-common/changelog.Debian debian/bogofilter-common/usr/share/doc/bogofilter-common/changelog + gzip -9f debian/bogofilter-common/usr/share/doc/bogofilter-common/bogofilter-tuning.HOWTO.html + + cd debian/bogofilter/usr/share/doc; ln -fs bogofilter-common bogofilter; cd ../../../../.. + for i in ${PROGRAMS}; do \ + cd debian/bogofilter-bdb/${MAN_PATH}; ln -fs $${i}.1.gz ./$${i}-bdb.1.gz; cd ../../../../../..; \ + cd debian/bogofilter-sqlite/${MAN_PATH}; ln -fs $${i}.1.gz ./$${i}-sqlite.1.gz; cd ../../../../../..; \ + cd debian/bogofilter-tokyocabinet/${MAN_PATH}; ln -fs $${i}.1.gz ./$${i}-tokyocabinet.1.gz; cd ../../../../../..; \ + cd debian/bogofilter-qdbm/${MAN_PATH}; ln -fs $${i}.1.gz ./$${i}-qdbm.1.gz; cd ../../../../../..; \ + done + cd debian/bogofilter-qdbm/${MAN_PATH}; ln -fs bogoupgrade.1.gz ./bogoQDBMupgrade-qdbm.1.gz; cd ../../../../../.. + cd debian/bogofilter-qdbm/usr/bin; ln -fs bogoQDBMupgrade-qdbm bogoupgrade-qdbm; cd ../../../.. + + dpkg-gencontrol -ldebian/changelog -isp -pbogofilter-common -Pdebian/bogofilter-common + chmod 644 debian/bogofilter-common/DEBIAN/control + chown 0.0 debian/bogofilter-common/DEBIAN/control + + $(INSTALL_FILE) debian/conffiles debian/bogofilter-common/DEBIAN/conffiles + tail -n +10 debian/bogofilter-common/etc/bogofilter.cf.example > debian/bogofilter-common/etc/bogofilter.cf +# sed '/^[^#]/s/^/#/' debian/bogofilter/etc/bogofilter.cf.example > debian/bogofilter/etc/bogofilter.cf + + rm debian/bogofilter-common/etc/bogofilter.cf.example + cd debian/bogofilter-common && find * -type f ! -path "etc/bogofilter.cf" ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums + dpkg --build debian/bogofilter-common .. + +# Build architecture-dependent files here. +binary-arch: build install check checkroot + $(checkdir) + $(INSTALL_DIR) debian/bogofilter-bdb/usr/share/doc \ + debian/bogofilter-qdbm/usr/share/doc \ + debian/bogofilter-sqlite/usr/share/doc \ + debian/bogofilter-tokyocabinet/usr/share/doc \ + debian/bogofilter/DEBIAN debian/bogofilter-bdb/DEBIAN \ + debian/bogofilter-qdbm/DEBIAN debian/bogofilter-sqlite/DEBIAN \ + debian/bogofilter-tokyocabinet/DEBIAN + + dpkg-shlibdeps -Tdebian/bogofilter-bdb.substvars debian/bogofilter-bdb/usr/bin/bogofilter-bdb debian/bogofilter-bdb/usr/bin/bogoutil-bdb debian/bogofilter-bdb/usr/bin/bogolexer-bdb + dpkg-shlibdeps -Tdebian/bogofilter-qdbm.substvars debian/bogofilter-qdbm/usr/bin/bogofilter-qdbm debian/bogofilter-qdbm/usr/bin/bogoutil-qdbm debian/bogofilter-qdbm/usr/bin/bogolexer-qdbm + dpkg-shlibdeps -Tdebian/bogofilter-sqlite.substvars debian/bogofilter-sqlite/usr/bin/bogofilter-sqlite debian/bogofilter-sqlite/usr/bin/bogoutil-sqlite debian/bogofilter-sqlite/usr/bin/bogolexer-sqlite + dpkg-shlibdeps -Tdebian/bogofilter-tokyocabinet.substvars debian/bogofilter-tokyocabinet/usr/bin/bogofilter-tokyocabinet debian/bogofilter-tokyocabinet/usr/bin/bogoutil-tokyocabinet debian/bogofilter-tokyocabinet/usr/bin/bogolexer-tokyocabinet + + dpkg-gencontrol -ldebian/changelog -isp -pbogofilter -Pdebian/bogofilter + dpkg-gencontrol -ldebian/changelog -isp -pbogofilter-bdb -Tdebian/bogofilter-bdb.substvars -Pdebian/bogofilter-bdb + dpkg-gencontrol -ldebian/changelog -isp -pbogofilter-qdbm -Tdebian/bogofilter-qdbm.substvars -Pdebian/bogofilter-qdbm + dpkg-gencontrol -ldebian/changelog -isp -pbogofilter-sqlite -Tdebian/bogofilter-sqlite.substvars -Pdebian/bogofilter-sqlite + dpkg-gencontrol -ldebian/changelog -isp -pbogofilter-tokyocabinet -Tdebian/bogofilter-tokyocabinet.substvars -Pdebian/bogofilter-tokyocabinet + chmod 644 debian/bogofilter*/DEBIAN/control + chown 0.0 debian/bogofilter*/DEBIAN/control + + cd debian/bogofilter-bdb && find * -type f ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums + cd debian/bogofilter-qdbm && find * -type f ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums + cd debian/bogofilter-sqlite && find * -type f ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums + cd debian/bogofilter-tokyocabinet && find * -type f ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums + chmod 644 debian/bogofilter*/DEBIAN/md5sums + chown 0.0 debian/bogofilter*/DEBIAN/md5sums + dpkg --build debian/bogofilter .. + dpkg --build debian/bogofilter-bdb .. + dpkg --build debian/bogofilter-qdbm .. + dpkg --build debian/bogofilter-sqlite .. + dpkg --build debian/bogofilter-tokyocabinet .. + +checkroot: + $(checkdir) + test root = "`whoami`" + +define checkdir + test -f debian/rules +endef + + + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure checkroot --- bogofilter-1.2.0.orig/debian/lintian_override.bogofilter +++ bogofilter-1.2.0/debian/lintian_override.bogofilter @@ -0,0 +1,3 @@ +# /usr/share/doc/bogofilter is a symlink to /usr/share/doc/bogofilter-common +# and depends on bogofilter-db (which in turn depends on bogofilter-common) +bogofilter binary: usr-share-doc-symlink-without-dependency --- bogofilter-1.2.0.orig/debian/bogofilter-bdb.postinst +++ bogofilter-1.2.0/debian/bogofilter-bdb.postinst @@ -0,0 +1,24 @@ +#!/bin/sh + +set -e + +util=bdb + +case "$1" in + configure|abort-upgrade) + update-alternatives --quiet --install \ + /usr/bin/bogofilter bogofilter /usr/bin/bogofilter-${util} 20 \ + --slave /usr/bin/bogoupgrade bogoupgrade /usr/bin/bogoupgrade-${util} \ + --slave /usr/bin/bogotune bogotune /usr/bin/bogotune-${util} \ + --slave /usr/bin/bf_copy bf_copy /usr/bin/bf_copy-${util} \ + --slave /usr/bin/bogolexer bogolexer /usr/bin/bogolexer-${util} \ + --slave /usr/bin/bogoutil bogoutil /usr/bin/bogoutil-${util} \ + --slave /usr/bin/bf_compact bf_compact /usr/bin/bf_compact-${util} \ + --slave /usr/bin/bf_tar bf_tar /usr/bin/bf_tar-${util} + ;; + *) + echo "postint called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + --- bogofilter-1.2.0.orig/debian/bogofilter-tokyocabinet.postinst +++ bogofilter-1.2.0/debian/bogofilter-tokyocabinet.postinst @@ -0,0 +1,24 @@ +#!/bin/sh + +set -e + +util=tokyocabinet + +case "$1" in + configure|abort-upgrade) + update-alternatives --quiet --install \ + /usr/bin/bogofilter bogofilter /usr/bin/bogofilter-${util} 20 \ + --slave /usr/bin/bogoupgrade bogoupgrade /usr/bin/bogoupgrade-${util} \ + --slave /usr/bin/bogotune bogotune /usr/bin/bogotune-${util} \ + --slave /usr/bin/bf_copy bf_copy /usr/bin/bf_copy-${util} \ + --slave /usr/bin/bogolexer bogolexer /usr/bin/bogolexer-${util} \ + --slave /usr/bin/bogoutil bogoutil /usr/bin/bogoutil-${util} \ + --slave /usr/bin/bf_compact bf_compact /usr/bin/bf_compact-${util} \ + --slave /usr/bin/bf_tar bf_tar /usr/bin/bf_tar-${util} + ;; + *) + echo "postint called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + --- bogofilter-1.2.0.orig/debian/copyright +++ bogofilter-1.2.0/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Clint Adams on +Thu, 29 Aug 2002 20:56:36 +0000, and is currently maintained by Serafeim +Zanikolas . + +It was downloaded from http://www.tuxedo.org/~esr/bogofilter/ +and is now housed at http://bogofilter.sourceforge.net/ + +The following copyright applies to this package: + +# Bogofilter is Copyright © 2002-2009 see /usr/share/doc/bogofilter-common/AUTHORS +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GPL is in +/usr/share/common-licenses/GPL-2. + +Some files are licensed under the terms of BSD (3 clause), MIT/X11, or ISC +(see file headers). --- bogofilter-1.2.0.orig/debian/changelog.bogofilter-bdb +++ bogofilter-1.2.0/debian/changelog.bogofilter-bdb @@ -0,0 +1,11 @@ +bogofilter (1.2.0-3) unstable; urgency=low + + * New maintainer. closes: #524743. + * Maintain a separate Debian changelog for every binary package. + closes: #524191. + * Allow the system administrator to choose a db backend, other than the + default bdb, using update-alternatives. closes: #315318. + * Add symbolic links so that manpages are accessible regardless of the db + backend in use. closes: #437718. + + -- Serafeim Zanikolas Wed, 06 May 2009 21:03:34 +0200 --- bogofilter-1.2.0.orig/debian/changelog +++ bogofilter-1.2.0/debian/changelog @@ -0,0 +1,1528 @@ +bogofilter (1.2.0-3) unstable; urgency=low + + * New maintainer. closes: #524743. + * Maintain a separate Debian changelog for every binary package. + closes: #524191. + * Allow the system administrator to choose a db backend, other than the + default bdb, using update-alternatives. closes: #315318. + * Add symbolic links so that manpages are accessible regardless of the db + backend in use. closes: #437718. + * Make executable + /usr/share/doc/bogofilter-common/examples/contrib/bogominitrain.pl + closes: #281892. + * Add lintian override for false lintian error message. + * Update binary package descriptions and remove duplicate Section: fields in + debian/control. + + -- Serafeim Zanikolas Wed, 06 May 2009 21:03:34 +0200 + +bogofilter (1.2.0-2) unstable; urgency=low + + * Bump to Standards-Version 3.8.1. + * Set Maintainer to Debian QA Group . + + -- Clint Adams Sun, 19 Apr 2009 11:39:26 -0400 + +bogofilter (1.2.0-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Tue, 24 Feb 2009 08:59:46 -0500 + +bogofilter (1.1.7-2) unstable; urgency=low + + * Have bf_compact use the correct bogoutil and bogofilter + alternatives. closes: #501947. + * Bump to Standards-Version 3.8.0. + * Change suggests from db4.6-util to db4.7-util. + + -- Clint Adams Wed, 18 Feb 2009 20:11:21 -0500 + +bogofilter (1.1.7-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Tue, 06 May 2008 11:14:51 -0400 + +bogofilter (1.1.6-4) unstable; urgency=low + + * Force use of awk (rather than gawk, mawk, or nawk). closes: #477840. + + -- Clint Adams Sat, 26 Apr 2008 11:26:24 -0400 + +bogofilter (1.1.6-3) unstable; urgency=low + + * Move -common to binary-indep. closes: #465845. + + -- Clint Adams Thu, 28 Feb 2008 11:18:08 -0500 + +bogofilter (1.1.6-2) unstable; urgency=low + + * Bump to Standards-Version 3.7.3. + * Compress NEWS.Debian. + + -- Clint Adams Thu, 10 Jan 2008 22:30:18 -0500 + +bogofilter (1.1.6-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Mon, 26 Nov 2007 23:29:00 -0500 + +bogofilter (1.1.5-4) unstable; urgency=low + + * Add bogofilter-tokyocabinet with datastore support by + Pierre Habouzit. closes: #452452. + + -- Clint Adams Fri, 23 Nov 2007 19:31:46 -0500 + +bogofilter (1.1.5-3) unstable; urgency=low + + * Switch to db4.6 for bogofilter-bdb. + + -- Clint Adams Sun, 29 Jul 2007 07:17:21 -0400 + +bogofilter (1.1.5-2) unstable; urgency=low + + * Switch to db4.5 for bogofilter-bdb. + + -- Clint Adams Fri, 13 Apr 2007 14:58:02 -0400 + +bogofilter (1.1.5-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Sun, 14 Jan 2007 20:01:10 -0500 + +bogofilter (1.1.4-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Mon, 1 Jan 2007 16:31:03 -0500 + +bogofilter (1.1.3-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sun, 3 Dec 2006 11:34:37 -0500 + +bogofilter (1.1.2-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sun, 3 Dec 2006 03:20:23 -0500 + +bogofilter (1.1.1-6) unstable; urgency=medium + + * Apply patch from Santiago Vila to properly clean up all the + substvars files and use modern syntax for tail. + closes: #401327. + + -- Clint Adams Sat, 2 Dec 2006 11:55:36 -0500 + +bogofilter (1.1.1-5) unstable; urgency=medium + + * Reenable qdbm, now that the alpha problem has a workaround. + + -- Clint Adams Fri, 3 Nov 2006 11:00:04 -0500 + +bogofilter (1.1.1-4) unstable; urgency=low + + * Disable qdbm again. + + -- Clint Adams Sun, 22 Oct 2006 04:43:04 -0400 + +bogofilter (1.1.1-3) unstable; urgency=low + + * Reenable qdbm. + + -- Clint Adams Sun, 17 Sep 2006 03:17:05 -0400 + +bogofilter (1.1.1-2) unstable; urgency=low + + * Remove the qdbm build-dep while the qdbm build is disabled. + + -- Clint Adams Mon, 4 Sep 2006 00:32:18 -0400 + +bogofilter (1.1.1-1) unstable; urgency=medium + + * New upstream stable release. + * Disable qdbm build due to qdbm breakage. + + -- Clint Adams Fri, 1 Sep 2006 15:36:58 -0400 + +bogofilter (1.0.3-1) unstable; urgency=low + + * New upstream current release. + * Bump Standards-Version to 3.7.2. + + -- Clint Adams Tue, 11 Jul 2006 09:53:46 -0400 + +bogofilter (1.0.2-3) unstable; urgency=low + + * Strip .comment section from binaries. + + -- Clint Adams Mon, 3 Apr 2006 20:23:43 -0400 + +bogofilter (1.0.2-2) unstable; urgency=medium + + * Change Suggests to db4.4-util. + + -- Clint Adams Mon, 6 Mar 2006 09:40:13 -0500 + +bogofilter (1.0.2-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Fri, 3 Mar 2006 20:30:30 -0500 + +bogofilter (1.0.1-2) unstable; urgency=low + + * Switch to db4.4. + + -- Clint Adams Sat, 14 Jan 2006 14:47:17 -0500 + +bogofilter (1.0.1-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Sun, 1 Jan 2006 17:42:01 -0500 + +bogofilter (1.0.0-1) unstable; urgency=medium + + * New upstream stable release. + + -- Clint Adams Wed, 30 Nov 2005 21:43:57 -0500 + +bogofilter (0.96.6-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Sun, 13 Nov 2005 03:40:56 -0500 + +bogofilter (0.96.5-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Mon, 7 Nov 2005 22:06:19 -0500 + +bogofilter (0.96.4-2) unstable; urgency=medium + + * Patch from upstream to fix infinite loop when using + charset_default=iso-8859-1. closes: #317524. + + -- Clint Adams Fri, 4 Nov 2005 19:29:17 -0500 + +bogofilter (0.96.4-1) unstable; urgency=high + + * New upstream current release. + + -- Clint Adams Tue, 1 Nov 2005 12:52:45 -0500 + +bogofilter (0.96.3-1) unstable; urgency=medium + + * New upstream current release. + - Includes fix from Mariusz Kruk for error in postfix example + leading to potential data loss. closes: #334854, #324646. + + -- Clint Adams Tue, 25 Oct 2005 23:48:34 -0400 + +bogofilter (0.96.2-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Sun, 25 Sep 2005 12:07:36 -0400 + +bogofilter (0.96.1-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Mon, 5 Sep 2005 09:39:17 -0400 + +bogofilter (0.96.0-1) unstable; urgency=low + + * New upstream current release. + * TDB support has been dropped upstream, so the -tdb package + is dropped as well. + + -- Clint Adams Mon, 15 Aug 2005 21:54:11 -0400 + +bogofilter (0.95.2-1) unstable; urgency=low + + * New upstream current release. + * Bump to Standards-Version 3.6.2. + + -- Clint Adams Thu, 30 Jun 2005 22:14:01 -0400 + +bogofilter (0.95.1-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Sun, 26 Jun 2005 22:40:33 -0400 + +bogofilter (0.95.0-2) unstable; urgency=low + + * Make bogofilter-bdb Replace bogofilter (<< 0.94.14-1). closes: #315316. + * Make bogofilter-common Replace bogofilter (<< 0.94.14-1). + closes: #315317. + + -- Clint Adams Tue, 21 Jun 2005 17:11:23 -0400 + +bogofilter (0.95.0-1) unstable; urgency=low + + * New upstream current release. + * Stop trying to chown in build target. closes: #315202. + * Fix short description of bogofilter-sqlite. + + -- Clint Adams Tue, 21 Jun 2005 09:31:38 -0400 + +bogofilter (0.94.14-2) unstable; urgency=medium + + * Patch tdb code to not attempt unaligned word access. + * Disable t.lock3 test for sqlite. + + -- Clint Adams Fri, 10 Jun 2005 09:53:14 -0400 + +bogofilter (0.94.14-1) unstable; urgency=low + + * New upstream bugfix release. + * Ship a binary package for each db backend (Berkeley DB, tdb, qdbm, + sqlite). closes: #309724. + + -- Clint Adams Wed, 8 Jun 2005 21:09:29 -0400 + +bogofilter (0.94.13-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Sat, 28 May 2005 16:43:07 -0400 + +bogofilter (0.94.12-1) unstable; urgency=low + + * New upstream stable release. + + -- Clint Adams Sun, 15 May 2005 21:57:56 -0400 + +bogofilter (0.94.11-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Tue, 10 May 2005 20:24:47 -0400 + +bogofilter (0.94.10-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Mon, 9 May 2005 11:26:22 -0400 + +bogofilter (0.94.9-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Fri, 6 May 2005 15:25:32 -0400 + +bogofilter (0.94.8-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Tue, 3 May 2005 22:20:40 -0400 + +bogofilter (0.94.7-1) unstable; urgency=medium + + * New upstream current release. + * Switch watch file to use the lolando sfdlr. + + -- Clint Adams Sat, 30 Apr 2005 12:55:49 -0400 + +bogofilter (0.94.6-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Tue, 26 Apr 2005 20:24:47 -0400 + +bogofilter (0.94.5-1) unstable; urgency=medium + + * New upstream current release. + * Drop db4.3-util to Suggests. + + -- Clint Adams Sat, 23 Apr 2005 12:33:37 -0400 + +bogofilter (0.94.4-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Thu, 7 Apr 2005 20:49:55 -0400 + +bogofilter (0.94.3-2) unstable; urgency=low + + * Stop prepending extra #'s to lines in /etc/bogofilter.cf. + + -- Clint Adams Thu, 7 Apr 2005 14:14:40 -0400 + +bogofilter (0.94.3-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Wed, 30 Mar 2005 21:02:16 -0500 + +bogofilter (0.94.2-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Fri, 25 Mar 2005 00:35:51 -0500 + +bogofilter (0.94.1-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Wed, 16 Mar 2005 21:31:42 -0500 + +bogofilter (0.94.0-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sat, 5 Mar 2005 20:55:45 -0500 + +bogofilter (0.93.5-1) unstable; urgency=medium + + * New upstream release. + + -- Clint Adams Sat, 22 Jan 2005 21:21:28 -0500 + +bogofilter (0.93.4-2) unstable; urgency=low + + * Fix 'bogofilter -F' crash. + + -- Clint Adams Sat, 15 Jan 2005 14:08:36 -0500 + +bogofilter (0.93.4-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Sun, 9 Jan 2005 11:16:40 -0500 + +bogofilter (0.93.3.snapshot20050105a-1) unstable; urgency=medium + + * New unofficial Matthias snapshot. + + -- Clint Adams Wed, 5 Jan 2005 11:26:31 -0500 + +bogofilter (0.93.3.1-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Sun, 26 Dec 2004 23:06:23 -0500 + +bogofilter (0.93.3-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Fri, 24 Dec 2004 23:14:35 -0500 + +bogofilter (0.93.2.cvs+1220-1) unstable; urgency=medium + + * New upstream CVS snapshot. + + -- Clint Adams Mon, 20 Dec 2004 13:30:23 -0500 + +bogofilter (0.93.2.cvs+1213-1) unstable; urgency=medium + + * New upstream CVS snapshot. + + -- Clint Adams Wed, 15 Dec 2004 17:51:31 -0500 + +bogofilter (0.93.2-2) unstable; urgency=medium + + * Change bf_* scripts to call db4.3_* instead of + db_*. + * Raise Suggests on db4.3-util to Recommends. + * Add Suggests on pax (for bf_tar). + + -- Clint Adams Mon, 6 Dec 2004 22:33:32 -0500 + +bogofilter (0.93.2-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Fri, 3 Dec 2004 20:51:07 -0500 + +bogofilter (0.93.1-2) unstable; urgency=medium + + * Add Suggests for db4.3-util. closes: #282779. + * Build-dep on libdb4.3-dev. + * Add NEWS.Debian entry to advise on upgrade steps + for anyone coming from 0.93.0-1 or 0.93.1-1. + (Such users will find that bogofilter will break + completely until they intervene). + + -- Clint Adams Sat, 27 Nov 2004 16:29:00 -0500 + +bogofilter (0.93.1-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Thu, 11 Nov 2004 09:55:08 -0500 + +bogofilter (0.93.0-1) unstable; urgency=low + + * New upstream current release (the release of significant + changes). + * Add NEWS.Debian to advise people not to downgrade, and to + be aware of changes in defaults. + + -- Clint Adams Sat, 6 Nov 2004 23:05:11 -0500 + +bogofilter (0.92.8-1) unstable; urgency=medium + + * New upstream current release. + (This fixes a rfc2047 qp decoding segfault.) closes: #275373. + + -- Clint Adams Tue, 19 Oct 2004 21:05:00 -0400 + +bogofilter (0.92.7-1) unstable; urgency=medium + + * New upstream current release. + (This fixes bogotune -D failures.) closes: #274405. + + -- Clint Adams Sat, 2 Oct 2004 11:18:43 -0400 + +bogofilter (0.92.6-1) unstable; urgency=medium + + * New upstream current release. Fixes -QQ bugs. + + -- Clint Adams Wed, 25 Aug 2004 20:06:33 -0400 + +bogofilter (0.92.5-1) unstable; urgency=medium + + * New upstream current release. + - adds "-QQ" option to bogofilter to display extended parameter + list. closes: #265667, #265706. + - improves documentation and resiliency of '-y'. closes: #264502. + + + -- Clint Adams Fri, 20 Aug 2004 10:46:18 -0400 + +bogofilter (0.92.4-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Thu, 29 Jul 2004 11:45:17 -0400 + +bogofilter (0.92.3-1) unstable; urgency=medium + + * New upstream current release. + * Change watch file to point to ftp2.sf.net instead of + prdownloads.sourceforge.net. + + -- Clint Adams Wed, 28 Jul 2004 09:32:34 -0400 + +bogofilter (0.92.2-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Thu, 15 Jul 2004 00:03:58 -0400 + +bogofilter (0.92.1-2) unstable; urgency=low + + * Add debian/watch file for dehs. + + -- Clint Adams Fri, 9 Jul 2004 08:38:48 -0400 + +bogofilter (0.92.1-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Thu, 1 Jul 2004 22:03:09 -0400 + +bogofilter (0.92.0-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sun, 27 Jun 2004 09:22:31 -0400 + +bogofilter (0.91.4-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sun, 20 Jun 2004 17:32:38 -0400 + +bogofilter (0.91.3-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Wed, 16 Jun 2004 09:24:52 -0400 + +bogofilter (0.91.2-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Fri, 11 Jun 2004 16:14:50 -0400 + +bogofilter (0.91.1-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Fri, 4 Jun 2004 10:59:20 -0400 + +bogofilter (0.91.0-4) unstable; urgency=low + + * Additional wordlist and datastore patches. + + -- Clint Adams Wed, 2 Jun 2004 10:49:07 -0400 + +bogofilter (0.91.0-3) unstable; urgency=low + + * Apply other patches related to tilde expansion cleanup. + * Convert contrib/scramble and contrib/trainbogo.sh from bash + scripts to POSIX sh scripts. + + -- Clint Adams Sun, 30 May 2004 17:32:21 -0400 + +bogofilter (0.91.0-2) unstable; urgency=medium + + * Apply patch to unbreak tilde expansion. closes: #251117. + + -- Clint Adams Fri, 28 May 2004 09:52:56 -0400 + +bogofilter (0.91.0-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sat, 22 May 2004 17:17:18 -0400 + +bogofilter (0.90.0-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Sun, 9 May 2004 22:29:25 -0400 + +bogofilter (0.17.5-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Thu, 1 Apr 2004 22:33:17 -0500 + +bogofilter (0.17.4-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Mon, 22 Mar 2004 09:38:48 -0500 + +bogofilter (0.17.3-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Thu, 18 Mar 2004 09:14:45 -0500 + +bogofilter (0.17.2-4) unstable; urgency=low + + * Extend bogotune -f to override sanity checks on ham-spam ratio. + + -- Clint Adams Wed, 3 Mar 2004 06:29:39 -0500 + +bogofilter (0.17.2-3) unstable; urgency=low + + * Extend bogotune -f to override sanity checks on provided + corpora. + + -- Clint Adams Wed, 3 Mar 2004 06:21:47 -0500 + +bogofilter (0.17.2-2) unstable; urgency=low + + * Apply (on a temporary trial basis) Jason A. Smith's bogotune + -f patch (allows override of sanity checks; currently proscribed + by bogofilter upstream). + + -- Clint Adams Wed, 3 Mar 2004 05:35:04 -0500 + +bogofilter (0.17.2-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sun, 22 Feb 2004 15:07:17 -0500 + +bogofilter (0.17.1-2) unstable; urgency=low + + * Fix -n/-s thinko in bogofilter(1), thanks to Stephane + Bortzmeyer. closes: #233838. + * Add missing slash to mailfilter example, thanks to Kai Hendry. + closes: #232830. + + -- Clint Adams Fri, 20 Feb 2004 09:45:47 -0500 + +bogofilter (0.17.1-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Tue, 10 Feb 2004 11:17:56 -0500 + +bogofilter (0.17.0-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sun, 1 Feb 2004 22:01:09 -0500 + +bogofilter (0.16.4-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Fri, 23 Jan 2004 08:21:22 -0500 + +bogofilter (0.16.3-2) unstable; urgency=medium + + * Don't ship bogogrep stuff from contrib directory. closes: #228368. + + -- Clint Adams Sun, 18 Jan 2004 12:44:47 -0500 + +bogofilter (0.16.3-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Sat, 17 Jan 2004 16:55:57 -0500 + +bogofilter (0.16.2-2) unstable; urgency=low + + * Install contrib scripts to /usr/share/doc/bogofilter/examples. + closes: #227505. + + -- Clint Adams Fri, 16 Jan 2004 21:35:25 -0500 + +bogofilter (0.16.2-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Fri, 16 Jan 2004 19:01:48 -0500 + +bogofilter (0.16.1-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Thu, 8 Jan 2004 11:01:01 -0500 + +bogofilter (0.16.0-1) unstable; urgency=low + + * New upstream current release. If you are using the Graham algorithm, + the Robinson geometric-mean algorithm, separate wordlist databases, + ignorelists, or any related command-line options, bogofilter will + almost certainly stop working. + * Switch from db4.1 to db4.2. + + -- Clint Adams Thu, 1 Jan 2004 18:06:24 -0500 + +bogofilter (0.15.13-1) unstable; urgency=low + + * New upstream current release. This fixes the + "cannot allocate memory" error for people still using separate + wordlist files. closes: #224504, #224546. + + -- Clint Adams Sat, 27 Dec 2003 15:11:14 -0500 + +bogofilter (0.15.12-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Wed, 24 Dec 2003 20:56:03 -0500 + +bogofilter (0.15.11-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Wed, 17 Dec 2003 10:28:29 -0500 + +bogofilter (0.15.10-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Mon, 8 Dec 2003 21:45:53 -0500 + +bogofilter (0.15.9-2) unstable; urgency=medium + + * Include integrating-with-{postfix,qmail} docs. closes: #223183. + + -- Clint Adams Sun, 7 Dec 2003 10:12:41 -0500 + +bogofilter (0.15.9-1) unstable; urgency=medium + + * New upstream current release. + * No longer suggest db4.1-util, and remove db4.1-util note from + README.Debian. closes: #218582. + + -- Clint Adams Mon, 24 Nov 2003 00:37:31 -0500 + +bogofilter (0.15.8-1) unstable; urgency=medium + + * New upstream current release. + (This removes some out-of-date information from the manpage, + thus closes: #217739.) + + -- Clint Adams Thu, 30 Oct 2003 09:20:54 -0500 + +bogofilter (0.15.7-1) unstable; urgency=medium + + * New upstream current release. + * Add note from Jerome R. Acks to README.Debian that db4.1-util + is necessary for running bogotune. closes: #212791. + + -- Clint Adams Tue, 14 Oct 2003 09:31:32 -0400 + +bogofilter (0.15.6-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Fri, 3 Oct 2003 15:53:38 -0400 + +bogofilter (0.15.4-2) unstable; urgency=medium + + * Make bogolex.sh POSIX-compliant. + + -- Clint Adams Wed, 24 Sep 2003 09:41:14 -0400 + +bogofilter (0.15.4-1) unstable; urgency=medium + + * New upstream current release. + * Bump to Standards-Version 3.6.1. + * Add libgsl0-dev to Build-Depends. + + -- Clint Adams Fri, 19 Sep 2003 19:08:47 -0400 + +bogofilter (0.15.3-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Thu, 11 Sep 2003 10:33:59 -0400 + +bogofilter (0.15.1-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Thu, 4 Sep 2003 08:04:33 -0400 + +bogofilter (0.15.0-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Mon, 1 Sep 2003 14:13:16 -0400 + +bogofilter (0.14.5.4-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Mon, 1 Sep 2003 14:07:46 -0400 + +bogofilter (0.14.5.2-1) unstable; urgency=medium + + * New upstream stable release. + + -- Clint Adams Tue, 26 Aug 2003 09:00:30 -0400 + +bogofilter (0.14.5.1-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Tue, 19 Aug 2003 20:44:30 -0400 + +bogofilter (0.14.4-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sun, 10 Aug 2003 17:37:54 -0400 + +bogofilter (0.14.3-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Mon, 4 Aug 2003 21:47:57 -0400 + +bogofilter (0.14.2-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Sat, 2 Aug 2003 21:57:18 -0400 + +bogofilter (0.14.1.1-3) unstable; urgency=medium + + * Apply the real patch to stop segfaulting on some architectures. + + -- Clint Adams Sat, 2 Aug 2003 16:24:30 -0400 + +bogofilter (0.14.1.1-2) unstable; urgency=medium + + * Apply patch to stop segfaulting on some architectures. + * Remove gdb build-dep again. + + -- Clint Adams Sat, 2 Aug 2003 11:07:14 -0400 + +bogofilter (0.14.1.1-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Fri, 1 Aug 2003 20:10:36 -0400 + +bogofilter (0.14.1-1) unstable; urgency=medium + + * New upstream current release. + * Build-dep on gdb for arm, hppa, m68k, mips, mipsel + to help track down possible misoptimization. + + -- Clint Adams Thu, 31 Jul 2003 19:19:54 -0400 + +bogofilter (0.14.0.1-2) unstable; urgency=medium + + * Bump to Standards-Version 3.6.0. + * Suggest db4.1-util (for bogotune). + * Have bogotune call db4.1_verify instead of db_verify. + closes: #203017 + + -- Clint Adams Mon, 28 Jul 2003 09:57:30 -0400 + +bogofilter (0.14.0.1-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Thu, 24 Jul 2003 01:04:41 -0400 + +bogofilter (0.14.0-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Tue, 22 Jul 2003 19:24:24 -0400 + +bogofilter (0.13.7.3-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Thu, 17 Jul 2003 09:47:26 -0400 + +bogofilter (0.13.7.2-2) unstable; urgency=medium + + * Use newer config.{guess,sub}. + + -- Clint Adams Mon, 14 Jul 2003 08:11:05 -0400 + +bogofilter (0.13.7.2-1) unstable; urgency=medium + + * New upstream stable release. + * Move tuning stuff to saner locations. closes: #199921. + + -- Clint Adams Sun, 6 Jul 2003 11:49:35 -0400 + +bogofilter (0.13.7-2) unstable; urgency=medium + + * Use newer config.{guess,sub}. + + -- Clint Adams Mon, 23 Jun 2003 07:36:55 -0400 + +bogofilter (0.13.7-1) unstable; urgency=low + + * New upstream current release. + + -- Clint Adams Fri, 20 Jun 2003 20:14:36 -0400 + +bogofilter (0.13.6.2-1) unstable; urgency=medium + + * New upstream stable release. + + -- Clint Adams Thu, 12 Jun 2003 14:25:19 -0400 + +bogofilter (0.13.6.1-1) unstable; urgency=medium + + * New upstream stable release. + + -- Clint Adams Thu, 5 Jun 2003 22:30:14 -0400 + +bogofilter (0.13.6-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Wed, 4 Jun 2003 15:15:29 -0400 + +bogofilter (0.13.5-1) unstable; urgency=medium + + * New upstream current release. + + -- Clint Adams Tue, 3 Jun 2003 10:59:27 -0400 + +bogofilter (0.13.4-1) unstable; urgency=medium + + * New upstream current release. This increases the default robs + value from 0.001 to 0.01. + + -- Clint Adams Fri, 30 May 2003 09:49:45 -0400 + +bogofilter (0.13.3-1) unstable; urgency=medium + + * New upstream current release. Note that as of 0.13.2, case + folding was disabled by default, and may lead to an increase + in false negatives when using case-folded wordlists. + + -- Clint Adams Thu, 29 May 2003 12:20:38 -0400 + +bogofilter (0.13.2-1) unstable; urgency=high + + * New upstream current release, which fixes the + replace_ascii_characters/ignore_case interaction defect. + + -- Clint Adams Sat, 24 May 2003 11:12:45 -0400 + +bogofilter (0.13.0-1) unstable; urgency=low + + * New upstream current release. + * Clean the correct substvars file in the clean target. + + -- Clint Adams Wed, 21 May 2003 12:51:00 -0400 + +bogofilter (0.12.3-1) unstable; urgency=medium + + * New upstream current release. + * Remove misleading comments from bogofilter.cf. closes: #187721. + + -- Clint Adams Sat, 10 May 2003 12:30:37 -0400 + +bogofilter (0.12.2-1) unstable; urgency=medium + + * New upstream current release. + * Build-dep ONLY on libdb4.1-dev, for Adrian Bunk. closes: #191061. + + -- Clint Adams Wed, 30 Apr 2003 10:39:26 -0400 + +bogofilter (0.12.1-1) unstable; urgency=medium + + * New upstream current release. + * Wordhash patch from David Relson to fix hppa alignment issue. + + -- Clint Adams Sat, 26 Apr 2003 11:21:58 -0400 + +bogofilter (0.11.2-1) unstable; urgency=low + + * New upstream stable release. + + -- Clint Adams Wed, 23 Apr 2003 22:02:30 -0400 + +bogofilter (0.11.1.9-1) unstable; urgency=medium + + * New upstream current release. + * Install procmail and maildrop examples. + + -- Clint Adams Fri, 11 Apr 2003 21:19:41 -0400 + +bogofilter (0.11.1.6-3) unstable; urgency=medium + + * Add some more checks to t.bogodir to make sure it's failing + due to nonexistent homedirs on certain buildds. + + -- Clint Adams Sun, 6 Apr 2003 19:20:43 -0400 + +bogofilter (0.11.1.6-2) unstable; urgency=medium + + * Use more loquacious t.bogodir to try to get some insight on + the intermittent failures. + * Drop gdb build-dep on s390. + + -- Clint Adams Sun, 6 Apr 2003 12:21:56 -0400 + +bogofilter (0.11.1.6-1) unstable; urgency=medium + + * New upstream current release. + * Go back to building with -O1 on s390 to deal with the gcc bug. + + -- Clint Adams Sat, 5 Apr 2003 22:39:12 -0500 + +bogofilter (0.11.1.5-1) unstable; urgency=low + + * New upstream bugfix release. + + -- Clint Adams Sat, 29 Mar 2003 13:17:50 -0500 + +bogofilter (0.11.1.4-1) unstable; urgency=medium + + * New upstream bugfix release. + + -- Clint Adams Wed, 26 Mar 2003 01:20:23 -0500 + +bogofilter (0.11.1.3-6) unstable; urgency=low + + * See if the segfaults recur with -O2. + + -- Clint Adams Tue, 11 Mar 2003 19:36:49 -0500 + +bogofilter (0.11.1.3-5) unstable; urgency=low + + * Now build with -O0 on s390. + + -- Clint Adams Tue, 11 Mar 2003 18:45:18 -0500 + +bogofilter (0.11.1.3-4) unstable; urgency=low + + * Really build with -O1 on s390 this time. + + -- Clint Adams Tue, 11 Mar 2003 16:02:28 -0500 + +bogofilter (0.11.1.3-3) unstable; urgency=low + + * Build with -O1 on s390. + + -- Clint Adams Tue, 11 Mar 2003 15:27:09 -0500 + +bogofilter (0.11.1.3-2) unstable; urgency=medium + + * Unlimit coredumpsize so that printcore works. + + -- Clint Adams Mon, 10 Mar 2003 23:32:32 -0500 + +bogofilter (0.11.1.3-1) unstable; urgency=low + + * New upstream bugfix release. + * Temporarily build-dep on gdb on s390 to get more information on the + mysterious segfaults under sbuild. + + -- Clint Adams Mon, 10 Mar 2003 20:57:14 -0500 + +bogofilter (0.11.1.2-2) unstable; urgency=low + + * Remove no-longer-relevant Build-Depends. + + -- Clint Adams Sun, 9 Mar 2003 22:17:56 -0500 + +bogofilter (0.11.1.2-1) unstable; urgency=low + + * New upstream bugfix release. + + -- Clint Adams Sat, 8 Mar 2003 12:04:04 -0500 + +bogofilter (0.11.1.1-2) unstable; urgency=medium + + * Apply patch to avoid divide by zero. (should fix alpha build) + + -- Clint Adams Thu, 6 Mar 2003 09:49:24 -0500 + +bogofilter (0.11.1.1-1) unstable; urgency=low + + * New upstream bugfix release. + + -- Clint Adams Thu, 6 Mar 2003 00:01:49 -0500 + +bogofilter (0.11.1-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Tue, 4 Mar 2003 22:24:23 -0500 + +bogofilter (0.10.3-1) unstable; urgency=low + + * New upstream patch release. + + -- Clint Adams Fri, 14 Feb 2003 11:39:05 -0500 + +bogofilter (0.10.2-2) unstable; urgency=low + + * Patch to fix html comment parsing bug. + + -- Clint Adams Mon, 3 Feb 2003 18:17:15 -0500 + +bogofilter (0.10.2-1) unstable; urgency=low + + * New upstream stable release. + + -- Clint Adams Mon, 3 Feb 2003 11:25:09 -0500 + +bogofilter (0.10.1.5-1) unstable; urgency=low + + * New upstream release, which fixes the sleep time randomization problem. + closes: #179297. + * Add README.Debian with mutt pipe_decode caveat. + * Switch to db4.1. + + -- Clint Adams Sat, 1 Feb 2003 14:16:45 -0500 + +bogofilter (0.10.1.4-1) unstable; urgency=low + + * New upstream release. + * Put METHODS file in /usr/share/doc. + + -- Clint Adams Fri, 31 Jan 2003 01:43:19 -0500 + +bogofilter (0.10.1.3-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Thu, 30 Jan 2003 00:43:25 -0500 + +bogofilter (0.10.1.2-4) unstable; urgency=low + + * Fix broken tilde expansion. closes: #178934. + + -- Clint Adams Wed, 29 Jan 2003 21:34:49 -0500 + +bogofilter (0.10.1.2-3) unstable; urgency=low + + * More sizeof(long) and signedness issues. + + -- Clint Adams Tue, 28 Jan 2003 20:49:15 -0500 + +bogofilter (0.10.1.2-2) unstable; urgency=low + + * Correct silly assumption of sizeof(long)==4. + + -- Clint Adams Tue, 28 Jan 2003 17:42:54 -0500 + +bogofilter (0.10.1.2-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Tue, 28 Jan 2003 12:12:46 -0500 + +bogofilter (0.10.1.1-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Mon, 27 Jan 2003 10:58:20 -0500 + +bogofilter (0.10.1-2) unstable; urgency=low + + * Fix autoconf fumble. + + -- Clint Adams Fri, 24 Jan 2003 01:19:35 -0500 + +bogofilter (0.10.1-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Thu, 23 Jan 2003 07:59:50 -0500 + +bogofilter (0.10.0-1) unstable; urgency=low + + * New upstream release. + * Remove hppa gcc kludge. + * Add Build-Conflicts against autoconf so people will stop filing bugs + demanding that it be added to Build-Depends. + + -- Clint Adams Sun, 19 Jan 2003 15:12:28 -0500 + +bogofilter (0.9.1.2-5) unstable; urgency=low + + * Fix "regognition" typo. closes: #175671. + + -- Clint Adams Tue, 7 Jan 2003 08:58:16 -0500 + +bogofilter (0.9.1.2-4) unstable; urgency=low + + * Change xmlto build-dep to require versions that call xmllint, + and don't call xmllint directly from build. closes: #174819. + (Thanks to Graham Wilson). + + -- Clint Adams Tue, 31 Dec 2002 09:04:33 -0500 + +bogofilter (0.9.1.2-3) unstable; urgency=low + + * Install AUTHORS file and refer to it from copyright file. + + -- Clint Adams Thu, 12 Dec 2002 09:18:06 -0500 + +bogofilter (0.9.1.2-2) unstable; urgency=low + + * Fix misleading bogofilter -h output. closes: #172313. + + -- Clint Adams Mon, 9 Dec 2002 11:21:40 -0500 + +bogofilter (0.9.1.2-1) unstable; urgency=low + + * New upstream release. + * Include README.Robinson in /usr/share/doc. closes: #171967. + + -- Clint Adams Fri, 6 Dec 2002 09:16:10 -0500 + +bogofilter (0.9.1.1-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Thu, 5 Dec 2002 15:30:21 -0500 + +bogofilter (0.9.1-2) unstable; urgency=low + + * Patch from David Relson to remove an overzealous message count check. + + -- Clint Adams Wed, 4 Dec 2002 10:02:47 -0500 + +bogofilter (0.9.1-1) unstable; urgency=low + + * New upstream release. + * Fix documentation and config typoes. closes: #171010. + + -- Clint Adams Tue, 3 Dec 2002 18:24:29 -0500 + +bogofilter (0.9.0.1-3) unstable; urgency=low + + * Check for size of double and long double in configure. + + -- Clint Adams Sat, 23 Nov 2002 20:59:32 -0500 + +bogofilter (0.9.0.1-2) unstable; urgency=low + + * Remove errant strip command. closes: #170452. + + -- Clint Adams Sat, 23 Nov 2002 17:11:42 -0500 + +bogofilter (0.9.0.1-1) unstable; urgency=low + + * New upstream bugfix beta. + + -- Clint Adams Sat, 23 Nov 2002 15:57:40 -0500 + +bogofilter (0.9.0-1) unstable; urgency=low + + * New upstream beta. Default algorithm is now Robinson, not Graham. + + -- Clint Adams Sat, 23 Nov 2002 02:42:17 -0500 + +bogofilter (0.8.0.scvs20021121-1) unstable; urgency=low + + * New upstream CVS snapshot. Includes Fisher's method for combining P. + * Build with gcc 3.2 on hppa to avoid bug in 3.0. + + -- Clint Adams Thu, 21 Nov 2002 02:53:38 -0500 + +bogofilter (0.8.0.rel-2) unstable; urgency=low + + * Add /etc/bogofilter.cf conffile. + * Install bogofilter-faq.html. + + -- Clint Adams Sat, 9 Nov 2002 22:47:52 -0500 + +bogofilter (0.8.0.rel-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Sat, 9 Nov 2002 13:32:45 -0500 + +bogofilter (0.8.0.rc3-1) unstable; urgency=low + + * New upstream release candidate. + + -- Clint Adams Fri, 8 Nov 2002 12:51:51 -0500 + +bogofilter (0.8.0.rc2-2) unstable; urgency=medium + + * Apply -u fix from rc3. + + -- Clint Adams Thu, 7 Nov 2002 11:21:14 -0500 + +bogofilter (0.8.0.rc2-1) unstable; urgency=low + + * New upstream release candidate. 0.8.0 release has been retracted. + + -- Clint Adams Wed, 6 Nov 2002 21:34:56 -0500 + +bogofilter (0.8.0-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Tue, 5 Nov 2002 19:58:02 -0500 + +bogofilter (0.7.999+0.8.0.rc1-1) unstable; urgency=low + + * New upstream release candidate. + + -- Clint Adams Sat, 2 Nov 2002 14:41:31 -0500 + +bogofilter (0.7.6-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Mon, 28 Oct 2002 19:08:04 -0500 + +bogofilter (0.7.5+rc2.0.7.6-1) unstable; urgency=low + + * New upstream release candidate for 0.7.6 (0.7.6rc2). + + -- Clint Adams Sun, 27 Oct 2002 14:11:34 -0500 + +bogofilter (0.7.5+rc1.0.7.6-2) unstable; urgency=low + + * Reapply signed char fix. + + -- Clint Adams Sat, 26 Oct 2002 19:39:39 -0400 + +bogofilter (0.7.5+rc1.0.7.6-1) unstable; urgency=low + + * New upstream release candidate for 0.7.6 (0.7.6rc1). + + -- Clint Adams Sat, 26 Oct 2002 16:50:33 -0400 + +bogofilter (0.7.5+1025cvs-5) unstable; urgency=low + + * Try alternate patch for ia64. + + -- Clint Adams Sat, 26 Oct 2002 11:19:52 -0400 + +bogofilter (0.7.5+1025cvs-4) unstable; urgency=low + + * Change xmalloc to malloc in lexer.l to avoid segfault on ia64. + + -- Clint Adams Sat, 26 Oct 2002 03:06:08 -0400 + +bogofilter (0.7.5+1025cvs-3) unstable; urgency=low + + * Change char to int to avoid signedness problem on s390/arm/powerpc. + + -- Clint Adams Sat, 26 Oct 2002 01:08:26 -0400 + +bogofilter (0.7.5+1025cvs-2) unstable; urgency=low + + * Resync with CVS. + * New fix for bus error. closes: #166280. + * Build with 'make check' + + -- Clint Adams Fri, 25 Oct 2002 22:59:15 -0400 + +bogofilter (0.7.5+1025cvs-1) unstable; urgency=low + + * New upstream CVS snapshot. + * Should fix memory alignment error. closes: #166280. + * Includes bogoutil manpage. closes: #165728. + * Also new are -g and -r options (for Graham and Robinson algorithms, + respectively). + + -- Clint Adams Fri, 25 Oct 2002 17:58:46 -0400 + +bogofilter (0.7.5+1017cvs-1) unstable; urgency=low + + * New upstream CVS snapshot. + + -- Clint Adams Thu, 17 Oct 2002 19:59:01 -0400 + +bogofilter (0.7.4+1014cvs-1) unstable; urgency=low + + * New upstream CVS snapshot. + + -- Clint Adams Mon, 14 Oct 2002 16:12:20 -0400 + +bogofilter (0.7.4+1004cvs-1) unstable; urgency=low + + * New upstream CVS snapshot, with fix for wordhash segfaults on hppa. + closes: bug#163049. + * Correct description of -v option in manpage. closes: bug#163157. + + -- Clint Adams Fri, 4 Oct 2002 04:17:05 -0400 + +bogofilter (0.7.4+1002cvs-1) unstable; urgency=low + + * New upstream CVS snapshot. This includes multiple wordlist support. + + -- Clint Adams Wed, 2 Oct 2002 17:45:26 -0400 + +bogofilter (0.7.4+0929cvs-1) unstable; urgency=low + + * New upstream CVS snapshot. This includes some fun changes. + For example, Judy is no longer used, -h and -H have been changed + back to -n and -N (whee), and the db filenames have been + changed again to spamlist and goodlist. + * Remove manpage reference to now-nonexistent -l option. + + -- Clint Adams Sun, 29 Sep 2002 12:17:21 -0400 + +bogofilter (0.7.4-6) unstable; urgency=low + + * Get rid of 'debug'-priority syslog messages about 'trying' and + 'released' flock locks. closes: #162739. + + -- Clint Adams Sun, 29 Sep 2002 11:42:14 -0400 + +bogofilter (0.7.4-5) unstable; urgency=low + + * No longer Build-Depend on debhelper. + + -- Clint Adams Mon, 23 Sep 2002 00:18:25 -0400 + +bogofilter (0.7.4-4) unstable; urgency=low + + * Drop 'debug', support 'noopt' in DEB_BUILD_OPTIONS. + + -- Clint Adams Sun, 22 Sep 2002 18:20:06 -0400 + +bogofilter (0.7.4-3) unstable; urgency=low + + * Use more liberal tokenization in the lexer, so that all manner + of high-bit characters will be treated as parts of words. + Hopefully this doesn't break much. closes: #161019. + + -- Clint Adams Sun, 22 Sep 2002 17:38:20 -0400 + +bogofilter (0.7.4-2) unstable; urgency=medium + + * Refix manpage typos. + + -- Clint Adams Sat, 21 Sep 2002 03:25:55 -0400 + +bogofilter (0.7.4-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Fri, 20 Sep 2002 22:14:36 -0400 + +bogofilter (0.7-6) unstable; urgency=medium + + * Don't segfault when HOME is unset. closes: bug#161084. + + -- Clint Adams Mon, 16 Sep 2002 19:11:04 -0400 + +bogofilter (0.7-5) unstable; urgency=medium + + * Check for reverse wraparound (but not forward wraparound). + closes: bug#160979. + + -- Clint Adams Sun, 15 Sep 2002 15:28:22 -0400 + +bogofilter (0.7-4) unstable; urgency=medium + + * Fix segfault when using bogofilter -d. closes: bug#160413. + Beware; -d is still a bit temperamental. + + -- Clint Adams Wed, 11 Sep 2002 12:16:14 -0400 + +bogofilter (0.7-3) unstable; urgency=low + + * Really fix manpage typos this time. closes: #160237. + + -- Clint Adams Tue, 10 Sep 2002 15:58:47 -0400 + +bogofilter (0.7-2) unstable; urgency=low + + * Fix several manpage typos. + + -- Clint Adams Mon, 9 Sep 2002 11:58:28 -0400 + +bogofilter (0.7-1) unstable; urgency=low + + * New upstream release. This gets rid of the autodaemon, + thus it closes: bug#159937. + * Include TODO and the changelog, now that they're included in + the tarball. + * Update to Standards-Version 3.5.7. + * New build-dep on libdb4.0-dev. + + -- Clint Adams Sat, 7 Sep 2002 19:04:15 -0400 + +bogofilter (0.6-2) unstable; urgency=low + + * Logic inversion patch from Frank Copeland. + + -- Clint Adams Sun, 1 Sep 2002 13:48:25 -0400 + +bogofilter (0.6-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Fri, 30 Aug 2002 13:25:50 -0400 + +bogofilter (0.5-1) unstable; urgency=low + + * New upstream release. + + -- Clint Adams Thu, 29 Aug 2002 19:27:16 -0400 + +bogofilter (0.4-1) unstable; urgency=low + + * Initial Release. closes: #157878. + + -- Clint Adams Thu, 29 Aug 2002 20:56:36 +0000 + --- bogofilter-1.2.0.orig/debian/bogofilter-qdbm.postinst +++ bogofilter-1.2.0/debian/bogofilter-qdbm.postinst @@ -0,0 +1,24 @@ +#!/bin/sh + +set -e + +util=qdbm + +case "$1" in + configure|abort-upgrade) + update-alternatives --quiet --install \ + /usr/bin/bogofilter bogofilter /usr/bin/bogofilter-${util} 20 \ + --slave /usr/bin/bogoupgrade bogoupgrade /usr/bin/bogoupgrade-${util} \ + --slave /usr/bin/bogotune bogotune /usr/bin/bogotune-${util} \ + --slave /usr/bin/bf_copy bf_copy /usr/bin/bf_copy-${util} \ + --slave /usr/bin/bogolexer bogolexer /usr/bin/bogolexer-${util} \ + --slave /usr/bin/bogoutil bogoutil /usr/bin/bogoutil-${util} \ + --slave /usr/bin/bf_compact bf_compact /usr/bin/bf_compact-${util} \ + --slave /usr/bin/bf_tar bf_tar /usr/bin/bf_tar-${util} + ;; + *) + echo "postint called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + --- bogofilter-1.2.0.orig/debian/bogofilter-tokyocabinet.prerm +++ bogofilter-1.2.0/debian/bogofilter-tokyocabinet.prerm @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e + +util=tokyocabinet + +case "$1" in + remove|deconfigure) + if update-alternatives --list bogofilter | grep -q bogofilter-${util}; then + update-alternatives --quiet --remove bogofilter "/usr/bin/bogofilter-${util}" + fi + ;; + *) + ;; +esac --- bogofilter-1.2.0.orig/debian/NEWS.Debian.bogofilter-qdbm +++ bogofilter-1.2.0/debian/NEWS.Debian.bogofilter-qdbm @@ -0,0 +1,10 @@ +bogofilter (1.2.0-2) unstable; urgency=low + + * The QDBM port is deprecated and marked for removal end June 2009, since + the upstream QDBM library is no longer supported and TokyoCabinet is the + successor. It is recommended that you dump your word lists, deinstall + bogofilter-qdbm, install bogofilter-tokyocabinet, and load your word lists + again. + + -- Serafeim Zanikolas Wed, 06 May 2009 22:55:15 +0200 + --- bogofilter-1.2.0.orig/debian/control +++ bogofilter-1.2.0/debian/control @@ -0,0 +1,104 @@ +Source: bogofilter +Section: mail +Priority: optional +Maintainer: Serafeim Zanikolas +Build-Depends: libdb-dev (>= 4.6.19-1), libgsl0-dev, libsqlite3-dev, libqdbm-dev, libtokyocabinet-dev +Standards-Version: 3.8.1 + +Package: bogofilter +Architecture: any +Depends: bogofilter-bdb | bogofilter-db +Description: a fast Bayesian spam filter (dummy package) + This package implements a fast Bayesian spam filter along the lines suggested + by Paul Graham in his article "A Plan For Spam". + . + This version substantially improves on Paul's proposal by doing smarter + lexical analysis. In particular, hostnames and IP addresses are retained + as recognition features rather than broken up. Various kinds of MTA + cruft such as dates and message-IDs are discarded so as not to bloat + the word lists. + +Package: bogofilter-bdb +Architecture: any +Depends: ${shlibs:Depends}, bogofilter-common +Suggests: pax, db4.7-util +Provides: bogofilter-db +Replaces: bogofilter (<< 0.94.14-1) +Description: a fast Bayesian spam filter (Berkeley DB) + This package implements a fast Bayesian spam filter along the lines suggested + by Paul Graham in his article "A Plan For Spam". + . + This version substantially improves on Paul's proposal by doing smarter + lexical analysis. In particular, hostnames and IP addresses are retained + as recognition features rather than broken up. Various kinds of MTA + cruft such as dates and message-IDs are discarded so as not to bloat + the word lists. + . + This package provides the bdb database backend. + +Package: bogofilter-qdbm +Architecture: any +Depends: ${shlibs:Depends}, bogofilter-common +Suggests: pax +Provides: bogofilter-db +Description: a fast Bayesian spam filter (QDBM) + This package implements a fast Bayesian spam filter along the lines suggested + by Paul Graham in his article "A Plan For Spam". + . + This version substantially improves on Paul's proposal by doing smarter + lexical analysis. In particular, hostnames and IP addresses are retained + as recognition features rather than broken up. Various kinds of MTA + cruft such as dates and message-IDs are discarded so as not to bloat + the word lists. + . + This package provides the qdbm database backend. + +Package: bogofilter-sqlite +Architecture: any +Depends: ${shlibs:Depends}, bogofilter-common +Suggests: pax +Provides: bogofilter-db +Description: a fast Bayesian spam filter (sqlite) + This package implements a fast Bayesian spam filter along the lines suggested + by Paul Graham in his article "A Plan For Spam". + . + This version substantially improves on Paul's proposal by doing smarter + lexical analysis. In particular, hostnames and IP addresses are retained + as recognition features rather than broken up. Various kinds of MTA + cruft such as dates and message-IDs are discarded so as not to bloat + the word lists. + . + This package provides the sqlite database backend. + +Package: bogofilter-tokyocabinet +Architecture: any +Depends: ${shlibs:Depends}, bogofilter-common +Suggests: pax +Provides: bogofilter-db +Description: a fast Bayesian spam filter (tokyocabinet) + This package implements a fast Bayesian spam filter along the lines suggested + by Paul Graham in his article "A Plan For Spam". + . + This version substantially improves on Paul's proposal by doing smarter + lexical analysis. In particular, hostnames and IP addresses are retained + as recognition features rather than broken up. Various kinds of MTA + cruft such as dates and message-IDs are discarded so as not to bloat + the word lists. + . + This package provides the tokyocabinet backend. + +Package: bogofilter-common +Architecture: all +Suggests: pax +Replaces: bogofilter (<< 0.94.14-1) +Description: a fast Bayesian spam filter (common files) + This package implements a fast Bayesian spam filter along the lines suggested + by Paul Graham in his article "A Plan For Spam". + . + This version substantially improves on Paul's proposal by doing smarter + lexical analysis. In particular, hostnames and IP addresses are retained + as recognition features rather than broken up. Various kinds of MTA + cruft such as dates and message-IDs are discarded so as not to bloat + the word lists. + . + This package provides files that are common for all database backends. --- bogofilter-1.2.0.orig/debian/README.Debian +++ bogofilter-1.2.0/debian/README.Debian @@ -0,0 +1,3 @@ +If mutt's pipe_decode option is on, information will be lost when piping +messages to bogofilter. This is the default in the distributed +/etc/Muttrc. It is HIGHLY recommended that this be turned off. --- bogofilter-1.2.0.orig/debian/watch +++ bogofilter-1.2.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/bogofilter/ bogofilter-([\d.]*).tar.gz debian uupdate --- bogofilter-1.2.0.orig/debian/bogofilter-qdbm.prerm +++ bogofilter-1.2.0/debian/bogofilter-qdbm.prerm @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e + +util=qdbm + +case "$1" in + remove|deconfigure) + if update-alternatives --list bogofilter | grep -q bogofilter-${util}; then + update-alternatives --quiet --remove bogofilter "/usr/bin/bogofilter-${util}" + fi + ;; + *) + ;; +esac --- bogofilter-1.2.0.orig/debian/bogofilter-sqlite.postinst +++ bogofilter-1.2.0/debian/bogofilter-sqlite.postinst @@ -0,0 +1,24 @@ +#!/bin/sh + +set -e + +util=sqlite + +case "$1" in + configure|abort-upgrade) + update-alternatives --quiet --install \ + /usr/bin/bogofilter bogofilter /usr/bin/bogofilter-${util} 20 \ + --slave /usr/bin/bogoupgrade bogoupgrade /usr/bin/bogoupgrade-${util} \ + --slave /usr/bin/bogotune bogotune /usr/bin/bogotune-${util} \ + --slave /usr/bin/bf_copy bf_copy /usr/bin/bf_copy-${util} \ + --slave /usr/bin/bogolexer bogolexer /usr/bin/bogolexer-${util} \ + --slave /usr/bin/bogoutil bogoutil /usr/bin/bogoutil-${util} \ + --slave /usr/bin/bf_compact bf_compact /usr/bin/bf_compact-${util} \ + --slave /usr/bin/bf_tar bf_tar /usr/bin/bf_tar-${util} + ;; + *) + echo "postint called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + --- bogofilter-1.2.0.orig/debian/bogofilter-bdb.prerm +++ bogofilter-1.2.0/debian/bogofilter-bdb.prerm @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e + +util=bdb + +case "$1" in + remove|deconfigure) + if update-alternatives --list bogofilter | grep -q bogofilter-${util}; then + update-alternatives --quiet --remove bogofilter "/usr/bin/bogofilter-${util}" + fi + ;; + *) + ;; +esac --- bogofilter-1.2.0.orig/debian/NEWS.Debian.bogofilter-bdb +++ bogofilter-1.2.0/debian/NEWS.Debian.bogofilter-bdb @@ -0,0 +1,92 @@ +bogofilter (1.2.0-2) unstable; urgency=low + + * If you are using the BDB backend with transactions enabled, + you must manually upgrade each of your wordlist databases + before it will function again. + - To do so, follow the instructions below, but using the utilities from the + db4.7-util package. + + -- Serafeim Zanikolas Wed, 06 May 2009 22:55:15 +0200 + +bogofilter (1.1.5-3) unstable; urgency=low + + * If this is a new installation, or if you are upgrading from a + version prior to 0.93.0-1, you should have no problems. + If you are using the BDB backend with transactions enabled, + you must manually upgrade each of your wordlist databases + before it will function again. + - To do so, first make sure you have the db4.5-util package + installed, then + 1. Stop invocation of bogofilter + 2. db4.5_recover -h ~/.bogofilter + 3. rm ~/.bogofilter/lockfi* + 4. cd ~/.bogofilter && rm $(db4.5_archive -h .) + 5. Resume invocation of bogofilter + - Repeat this upgrade procedure for each relevant bogofilter + wordlist database, substituting the directory name for + "~/.bogofilter". + * Alternately, if you don't want to upgrade your database, you + may move or delete it and rebuild your wordlist from scratch. + + -- Clint Adams Sun, 29 Jul 2007 07:17:21 -0400 + +bogofilter (1.0.1-2) unstable; urgency=low + + * If this is a new installation, or if you are upgrading from a + version prior to 0.93.0-1, you should have no problems. + If you are using the BDB backend with transactions enabled, + you must manually upgrade each of your wordlist databases + before it will function again. + - To do so, first make sure you have the db4.3-util package + installed, then + 1. Stop invocation of bogofilter + 2. db4.3_recover -h ~/.bogofilter + 3. rm ~/.bogofilter/lockfi* + 4. cd ~/.bogofilter && rm $(db4.3_archive -h .) + 5. Resume invocation of bogofilter + - Repeat this upgrade procedure for each relevant bogofilter + wordlist database, substituting the directory name for + "~/.bogofilter". + * Alternately, if you don't want to upgrade your database, you + may move or delete it and rebuild your wordlist from scratch. + + -- Clint Adams Sat, 14 Jan 2006 14:47:17 -0500 + +bogofilter (0.93.1-2) unstable; urgency=medium + + * If this is a new installation, or if you are upgrading from a + version prior to 0.93.0-1, you should have no problems. If, + on the other hand, you are unfortunate enough to be upgrading + from 0.93.0-1 or 0.93.0-2, you must manually upgrade each of + your wordlist databases before it will function again. + - To do so, first make sure you have the db4.2-util package + installed, then + 1. Stop invocation of bogofilter + 2. db4.2_recover -h ~/.bogofilter + 3. rm ~/.bogofilter/lockfi* + 4. cd ~/.bogofilter && rm $(db4.2_archive -h .) + 5. Resume invocation of bogofilter + - Repeat this upgrade procedure for each relevant bogofilter + wordlist database, substituting the directory name for + "~/.bogofilter". + * Alternately, if you don't want to upgrade your database, you + may move or delete it and rebuild your wordlist from scratch. + + -- Clint Adams Sat, 27 Nov 2004 16:29:00 -0500 + +bogofilter (0.93.0-1) unstable; urgency=low + + * For more detailed information, read + /usr/share/doc/bogofilter/RELEASE.NOTES-0.93 . + * bogofilter's defaults have changed. All users should be made aware + that depending on their configurations, the words in the header added + to messages by bogofilter in passthrough mode may abruptly change from + "Yes" and "No" to "Spam", "Ham", and "Unsure"; and this may render + useless any filtering based on these headers. + * bogofilter has switched to use the Berkeley DB Transactional Data + Store. bogofilter will read databases created by previous versions, + though rebuilding the database is recommended to take advantage of all + features. Currently transaction log files need to be archived or + deleted manually. + + -- Clint Adams Sat, 6 Nov 2004 23:05:11 -0500 --- bogofilter-1.2.0.orig/debian/changelog.bogofilter-qdbm +++ bogofilter-1.2.0/debian/changelog.bogofilter-qdbm @@ -0,0 +1,11 @@ +bogofilter (1.2.0-3) unstable; urgency=low + + * New maintainer. closes: #524743. + * Maintain a separate Debian changelog for every binary package. + closes: #524191. + * Allow the system administrator to choose a db backend, other than the + default bdb, using update-alternatives. closes: #315318. + * Add symbolic links so that manpages are accessible regardless of the db + backend in use. closes: #437718. + + -- Serafeim Zanikolas Wed, 06 May 2009 21:03:34 +0200 --- bogofilter-1.2.0.orig/debian/NEWS.Debian.bogofilter-common +++ bogofilter-1.2.0/debian/NEWS.Debian.bogofilter-common @@ -0,0 +1,11 @@ +bogofilter (1.2.0-2) unstable; urgency=low + + * You may now use update-alternatives to choose another than the default db + backend. For instance, to switch the backend to sqlite, install + bogofilter-sqlite and run as root: + update-alternatives --set bogofilter /usr/bin/bogofilter-sqlite + Bear in mind that, to switch to a different backend you have to dump your + word lists using bogoutil of the old backend, and and load your word + lists again using bogotuil of the new backend. + + -- Serafeim Zanikolas Wed, 06 May 2009 22:55:15 +0200 --- bogofilter-1.2.0.orig/debian/changelog.bogofilter-sqlite +++ bogofilter-1.2.0/debian/changelog.bogofilter-sqlite @@ -0,0 +1,11 @@ +bogofilter (1.2.0-3) unstable; urgency=low + + * New maintainer. closes: #524743. + * Maintain a separate Debian changelog for every binary package. + closes: #524191. + * Allow the system administrator to choose a db backend, other than the + default bdb, using update-alternatives. closes: #315318. + * Add symbolic links so that manpages are accessible regardless of the db + backend in use. closes: #437718. + + -- Serafeim Zanikolas Wed, 06 May 2009 21:03:34 +0200