Up to [cvs.netbsd.org] / pkgsrc / mail / ifile
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.8 / (download) - annotate - [select for diffs], Sun Oct 3 12:47:20 2010 UTC (19 months, 3 weeks ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
HEAD
Changes since 1.7: +2 -1
lines
Diff to previous 1.7 (colored)
Convert sh-like conditional style to gmake's one. gmake-3.82 dislike it.
Revision 1.7 / (download) - annotate - [select for diffs], Thu Feb 24 09:59:23 2005 UTC (7 years, 3 months ago) by agc
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1,
pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4,
pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
pkgsrc-2008Q1-base,
pkgsrc-2008Q1,
pkgsrc-2007Q4-base,
pkgsrc-2007Q4,
pkgsrc-2007Q3-base,
pkgsrc-2007Q3,
pkgsrc-2007Q2-base,
pkgsrc-2007Q2,
pkgsrc-2007Q1-base,
pkgsrc-2007Q1,
pkgsrc-2006Q4-base,
pkgsrc-2006Q4,
pkgsrc-2006Q3-base,
pkgsrc-2006Q3,
pkgsrc-2006Q2-base,
pkgsrc-2006Q2,
pkgsrc-2006Q1-base,
pkgsrc-2006Q1,
pkgsrc-2005Q4-base,
pkgsrc-2005Q4,
pkgsrc-2005Q3-base,
pkgsrc-2005Q3,
pkgsrc-2005Q2-base,
pkgsrc-2005Q2,
pkgsrc-2005Q1-base,
pkgsrc-2005Q1,
cwrapper,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.6: +2 -1
lines
Diff to previous 1.6 (colored)
Add RMD160 digests.
Revision 1.6 / (download) - annotate - [select for diffs], Sun Dec 12 23:39:36 2004 UTC (7 years, 5 months ago) by salo
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base,
pkgsrc-2004Q4
Changes since 1.5: +3 -3
lines
Diff to previous 1.5 (colored)
Correct checksum, distfile changed without version bump. Upstream maintainers asked not to do it again.. Changes: - manual page updates *sigh*
Revision 1.5 / (download) - annotate - [select for diffs], Fri Aug 20 11:47:40 2004 UTC (7 years, 9 months ago) by salo
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base,
pkgsrc-2004Q3
Changes since 1.4: +3 -5
lines
Diff to previous 1.4 (colored)
Update to version 1.3.4. 1.3.4: ====== - add threshold support 1.3.3: ====== - don't use __attributes__ for non-GCC compilers (from pkgsrc)
Revision 1.4 / (download) - annotate - [select for diffs], Fri Jul 25 15:25:13 2003 UTC (8 years, 10 months ago) by salo
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base,
pkgsrc-2004Q2,
pkgsrc-2004Q1-base,
pkgsrc-2004Q1,
pkgsrc-2003Q4-base,
pkgsrc-2003Q4
Changes since 1.3: +6 -4
lines
Diff to previous 1.3 (colored)
Updated to version 1.3.2. Changes: - fix for non-GCC compilers 1.3.2: ====== - ifile.c: add setlocale command; fixes bug 1500. - opts.c: Change // comment to /**/ (use C style comments)
Revision 1.3 / (download) - annotate - [select for diffs], Fri Apr 18 10:29:20 2003 UTC (9 years, 1 month ago) by salo
Branch: MAIN
Changes since 1.2: +3 -5
lines
Diff to previous 1.2 (colored)
Updated to version 1.3.1. Changes: - opts.c: update mailing list address - database.c: make error messages refer to temp_data_file; free temp_data_file - database.c (ifile_write_db): check for errors while writing database. Fixes bug 2955. - Fixed problems in configure and autoconf scripts for the case of selecting non-gcc C compiler. Fixes bug 2535.
Revision 1.2 / (download) - annotate - [select for diffs], Tue Feb 25 11:34:37 2003 UTC (9 years, 3 months ago) by salo
Branch: MAIN
Changes since 1.1: +5 -3
lines
Diff to previous 1.1 (colored)
Updated to version 1.3.0. Changes: - add local patch for configure generated with new autoconf, the old one doesn't accept CFLAGS & the like. (already fixed in ifile cvs) 1.3.0: ====== - include/extendable_array.h: Fixed bug in EXT_ARRAY_INIT_N_SET() macro. Fixes bug 2516, where new folders caused the database to be garbled. - Performance improvements: On a Sun SPARC-based system running Solaris 10, with a database of about 16500 words, got a 40% improvement in words processed per second when reading the database, using the changes listed here. - include/ifile.h: Changed prototypes for readline(), ifile_read_header() and ifile_read_word_frequencies() to reflect new calling conventions. - include/extendable_array.h: New macro EXT_ARRAY_INIT_N_SET() combines the effects of EXT_ARRAY_INIT() and multiple calls to EXT_ARRAY_SET() in a smarter way, saving many realloc() calls and many manipulations of the array metadata. - utils.c: Rewrote readline to take a char-- bufp and use the data within -bufp to parse a line, and update -bufp to point beyond the first line. This avoids at least one copy of the data. - primes.c: Cast values returned by ifile_realloc() correctly. - int4str.c: Cast argument to free() to void - in ifile_int4str_free_contents(), to fix compiler complaints. - hash.c: Added an include of <string.h> to fix compiler complaints. - database.c: Made ifile_read_db() read the whole database in one fell swoop and modified callers of readline() to just pass in a pointer to the buffered database. Also made ifile_read_word_entry() call a new macro EXT_ARRAY_INIT_N_SET() in place of EXT_ARRAY_INIT() and multiple calls to EXT_ARRAY_SET(), saving many calls to realloc() and many manipulations of the extendable array metadata.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Dec 13 09:39:15 2002 UTC (9 years, 5 months ago) by salo
Branch: TNF
CVS Tags: pkgsrc-base,
netbsd-1-6-1-base,
netbsd-1-6-1
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Initial import of ifile, version 1.2.1.
ifile is a general mail filtering system which uses a modern-day text learning
algorithm to intelligently filter mail according to the way the user tends to
organize mail.
ifile is different from other mail filtering programs in three major ways:
1. ifile does not require the user to generate a set of rules in order to
successfully filter mail
2. ifile uses the entire content of messages for filtering purposes
3. ifile learns as the user moves incorrectly filtered messages to new
mailboxes
ifile is not dependent upon any specific mail system and should be adaptable
to any system which allows an outside program to perform mail filtering.
Revision 1.1 / (download) - annotate - [select for diffs], Fri Dec 13 09:39:15 2002 UTC (9 years, 5 months ago) by salo
Branch: MAIN
Initial revision