Revisions of bogofilter

Yuchen Lin's avatar Yuchen Lin (maxlin_factory) accepted request 486976 from Martin Pluskal's avatar Martin Pluskal (pluskalm) (revision 30)
- Small spec file cleanup
- Adjust usage of update-alternatives
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 379899 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 28)
Automatic submission by obs-autosubmit
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 305580 from Lars Müller's avatar Lars Müller (lmuelle) (revision 27)
Add README.SUSE to the doc package.
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 304968 from Lars Müller's avatar Lars Müller (lmuelle) (revision 26)
The split of the actual back-ends and usage of the alternatives
mechanism make it possible to have several back-ends installed on the
same host.

By the db backend has the highest priority.  By this we ensure to stay
compatible while upgrading.

Only Tumbleweed users which used bogofilter after Apr 5th have to pay
some extra attention as their database might be sqlite3 driven.  If
that's the case either:

a) zypper in -bogofilter-db bogofilter-sqlite3

or

b) switch the alternative to bogofilter-sqlite3

Thanks Martin for the alternatives implementation!

- Provide and obsolete bogofilter from the db subpackage to ensure we stay
  with the same back-end in the update case.
- Require a backend package from the common package.
- Split of the documentation into an independent package.
- Tag the common and doc package as noarch post-11.1.

- Build different backends
  * sqlite3 db and tokyocabinet
  * switch between them using update-alternatives
- Disable checks as they do not work with suffixed builds
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 294650 from Lars Müller's avatar Lars Müller (lmuelle) (revision 25)
- Update dependencies
  * use shared gsl
- Cleanup spec-file with spec-cleaner
- Change backend from libdb to sqlite3 for post-13.2 systems
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 24)
Split 13.2 from Factory
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 23)
Split 13.1 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 184123 from Lars Müller's avatar Lars Müller (lmuelle) (revision 22)
- Update to version 1.2.4.
  * Fix three crashes in command line and environment variable parsers
    that caused NULL pointer dereferences with long option variants
    of bogofilter --syslog-tag, or bogoutil --timestamp-date, or when
    bogotune -M<file> cannot derive the bogofilter directory.
  * Add getopt_long_chk(), a getopt_long variant that checks if the
    overlapping short and long options agree on whether their argument
    is not required, mandatory, or optional.  If they disagree, the
    program aborts.
  * Fix a crash in command line parser that causes a NULL pointer
    dereference when --db-cachesize is used without argument.
    Found with getopt_long_chk().
  * Change lexer API/ABI a bit so as to work with flex 2.5.36 generated
    lexers (for instance, on Fedora 18 "Spherical Cow") that flip the
    type of yyleng from int to size_t. We use a signed long internally.
  * Fix XML form of Bulgarian FAQ so that it validates;
    and validate XHTML at build time.
  * Mark Berkeley DB 5.2.42 and 5.3.21 supported.
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 21)
Split 12.3 from Factory
Ismail Dönmez's avatar Ismail Dönmez (namtrac) accepted request 144334 from Lars Müller's avatar Lars Müller (lmuelle) (revision 20)
- Update to version 1.2.3.
  * Update configure.ac to avoid autoconf 2.68 warnings, by
    (a) quoting the first AC_RUN_IFELSE argument, an
        AC_LANG_PROGRAM(), with [ ], and
    (b) providing an explicit "true" assumption for Berkeley DB
        capabilities to avoid cross-compilation warnings.
  * Security bugfix; (bnc#792939),
    Fix a heap corruption in base64 decoder on invalid input.
    http://bogofilter.sourceforge.net/security/bogofilter-SA-2012-01
  * Added bogofilter-faq-bg.html, a Bulgarian translation of the FAQ.
  * Mark "Berkeley DB 5.1.19: (August 27, 2010)" supported.
- Update to version 1.2.2.
  * Use a better PRNG for random sleeps. That is arc4random() where
    available, and drand48() elsewhere.
  * Assorted fixes for issues found with clang analyzer:
    + Fix a potential NULL deference
    + Fix a potential division by zero
    + Remove dead assignments and increments
  * Update Doxyfile and source contrib/bogogrep.c for docs, too.
  * Security bugfix, CVE-2010-2494:
    Fix a heap corruption in base64 decoder on invalid input.
    Analysis and patch by Julius Plenz <plenz@cis.fu-berlin.de>.
    Please see doc/bogofilter-SA-2010-01 for details.
  * Updated sendmail milter contrib/bogofilter-milter.pl to v1.??????
  * Bump supported/minimum SQLite3 versions and warning threshold.
    See doc/README.sqlite for details.
  * Mark BerkeleyDB 4.8.26 and 5.0.21 supported.
  * Make t.maint more robust; ignore .ENCODING token. To fix test
    failures on, for instance, FreeBSD with unicode enabled.
  * Fix several compiler warnings "array subscript has type 'char'", by
    casting the arguments to unsigned char.
  * Split error messages for ENOENT and EINVAL into new function.
  * Avoid divison by zero in robx computation by checking if there are at
    least one ham message and one spam message registered.
  * contrib/spamitarium.pl updated to version 0.4.0
  * Updated and integrated Ted Phelps's "Patch to prevent .ENCODING from
    being discarded by bogoutil -m" (SourceForge Patch #1743984).
- remove call to suse_update_config (very old work around)
Ismail Dönmez's avatar Ismail Dönmez (namtrac) accepted request 143876 from Lars Müller's avatar Lars Müller (lmuelle) (revision 19)
- Update to version 1.2.3.
  * Update configure.ac to avoid autoconf 2.68 warnings, by
    (a) quoting the first AC_RUN_IFELSE argument, an
        AC_LANG_PROGRAM(), with [ ], and
    (b) providing an explicit "true" assumption for Berkeley DB
        capabilities to avoid cross-compilation warnings.
  * Security bugfix,
    Fix a heap corruption in base64 decoder on invalid input.
  * Added bogofilter-faq-bg.html, a Bulgarian translation of the FAQ.
  * Mark "Berkeley DB 5.1.19: (August 27, 2010)" supported.
- Update to version 1.2.2.
  * Use a better PRNG for random sleeps. That is arc4random() where
    available, and drand48() elsewhere.
  * Assorted fixes for issues found with clang analyzer:
    + Fix a potential NULL deference
    + Fix a potential division by zero
    + Remove dead assignments and increments
  * Update Doxyfile and source contrib/bogogrep.c for docs, too.
  * Security bugfix, CVE-2010-2494:
    Fix a heap corruption in base64 decoder on invalid input.
    Analysis and patch by Julius Plenz <plenz@cis.fu-berlin.de>.
    Please see doc/bogofilter-SA-2010-01 for details.
  * Updated sendmail milter contrib/bogofilter-milter.pl to v1.??????
  * Bump supported/minimum SQLite3 versions and warning threshold.
    See doc/README.sqlite for details.
  * Mark BerkeleyDB 4.8.26 and 5.0.21 supported.
  * Make t.maint more robust; ignore .ENCODING token. To fix test
    failures on, for instance, FreeBSD with unicode enabled.
  * Fix several compiler warnings "array subscript has type 'char'", by
    casting the arguments to unsigned char.
  * Split error messages for ENOENT and EINVAL into new function.
  * Avoid divison by zero in robx computation by checking if there are at
    least one ham message and one spam message registered.
  * contrib/spamitarium.pl updated to version 0.4.0
  * Updated and integrated Ted Phelps's "Patch to prevent .ENCODING from
    being discarded by bogoutil -m" (SourceForge Patch #1743984).
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 18)
branched from openSUSE:Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 97972 from Cristian Rodríguez's avatar Cristian Rodríguez (elvigia) (revision 17)
- remove call to suse_update_config (very old work around) (forwarded request 97682 from coolo)
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 16)
replace license with spdx.org variant
Displaying revisions 1 - 20 of 35
openSUSE Build Service is sponsored by