summaryrefslogtreecommitdiff
path: root/libsieve
AgeCommit message (Collapse)AuthorFiles
2003-01-10(sieve_test_address,sieve_test_header): Removed unused variables.Sergey Poznyakoff1
2003-01-10include <string.h>Sergey Poznyakoff1
2003-01-10(comp_false): Fixed declaration.Sergey Poznyakoff1
(sieve_match_part_checker): shut compilator warnings about possibly uninitialized variables.
2003-01-06UpdatedSergey Poznyakoff1
2003-01-06(sieve_tag_lookup): Check for taglist != NULL before calling list_do().Sergey Poznyakoff1
2003-01-06(multiline_strip_tabs): Forward declaration.Sergey Poznyakoff1
2003-01-06Handle "relational" as a special case.Sergey Poznyakoff1
2003-01-06(do_count): New function. A common handler for :count tag.Sergey Poznyakoff1
(retrieve_header): Use header_get_field_{name|value}, since header_aget_value cannot return multiple header values. (sieve_test_address,sieve_test_header,sieve_test_envelope): Use do_count.
2003-01-05(sieve_test_address,sieve_test_header): Added support for relational tests.Sergey Poznyakoff1
2003-01-05(sieve_register_comparator)Sergey Poznyakoff1
(_find_comparator,comp_false,sieve_match_part_checker): Added support for relational tests.
2003-01-05Added relational.c.Sergey Poznyakoff2
2002-12-312002-12-31 Jeff Bailey <jbailey@gnu.org>Jeff Bailey1
* auth/Makefile.am: Correct copyright year, add license information. * sieve/testsuite/Makefile.am: Likewise. * testsuite/Makefile.am: Likewise. * sieve/Makefile.am: Likewise. * scripts/guile-1.6/Makefile.am: Likewise. * scripts/guile-1.4/Makefile.am: Likewise. * scripts/Makefile.am: Likewise. * readmsg/testsuite/Makefile.am: Likewise. * readmsg/Makefile.am: Likewise. * mh/Makefile.am: Likewise. * messages/testsuite/Makefile.am: Likewise. * messages/Makefile.am: Likewise. * pop3d/testsuite/Makefile.am: Likewise. * pop3d/Makefile.am: Likewise. * mapi/Makefile.am: Likewise. * mail.remote/testsuite/Makefile.am: Likewise. * mail.remote/Makefile.am: Likewise. * mail.local/testsuite/Makefile.am: Likewise. * mail.local/Makefile.am: Likewise. * mailbox2/pop3/Makefile.am: Likewise. * mailbox2/mbox/Makefile.am: Likewise. * mailbox2/include/mailutils/sys/Makefile.am: Likewise. * mailbox2/include/mailutils/Makefile.am: Likewise. * mailbox2/include/Makefile.am: Likewise. * mailbox2/Makefile.am: Likewise. * mailbox/testsuite/Makefile.am: Likewise. * mailbox/include/Makefile.am: Likewise. * mailbox/Makefile.am: Likewise. * mail/testsuite/Makefile.am: Likewise. * mail/Makefile.am: Likewise. * m4/Makefile.am: Likewise. * libsieve/Makefile.am: Likewise. * libmu_scm/Makefile.am: Likewise. * lib/posix/Makefile.am: Likewise. * lib/Makefile.am: Likewise. * include/mailutils/gnu/Makefile.am: Likewise. * include/mailutils/Makefile.am: Likewise. * include/Makefile.am: Likewise. * imap4d/Makefile.am: Likewise. * imap4d/testsuite/Makefile.am: Likewise. * guimb/scm/Makefile.am: Likewise. * guimb/Makefile.am: Likewise. * from/testsuite/Makefile.am: Likewise. * from/Makefile.am: Likewise. * frm/testsuite/Makefile.am: Likewise. * examples/Makefile.am: Likewise. * frm/Makefile.am: Likewise. * dotlock/Makefile.am: Likewise. * doc/texinfo/Makefile.am: Likewise. * doc/rfc/Makefile.am: Likewise. * doc/man/Makefile.am: Likewise. * doc/Makefile.am: Likewise. * comsat/Makefile.am: Likewise. * Makefile.am: Likewise. * configure.ac: Update FSF Address
2002-12-29Fixed C source copyrights to be compatible with the GNU 'Maintaining'Wojciech Polak4
document, i.e. "This program" -> "GNU Mailutils".
2002-12-28Use X-Loop-Prevention header instead of X-Sender.Sergey Poznyakoff1
2002-12-27Added missing N_() markers.Sergey Poznyakoff1
2002-12-25Added NLS.Wojciech Polak9
2002-12-24Added @INTLINCS@ and @LTLIBINTL@ where appropriate.Sergey Poznyakoff1
2002-12-24Documented the grammar.Sergey Poznyakoff1
2002-12-20Implemented shell-like extension for multiline strings.Sergey Poznyakoff1
They can start now with text:[-][delimiter], the dash meaning 'strip leading tabs', the 'delimiter' overriding default end-of-text delimiter (.)
2002-12-14Allow backslashes in quoted strings.Sergey Poznyakoff1
2002-12-14(build_mime): To improve readability, output additional newline before ↵Sergey Poznyakoff1
reporting the reason.
2002-12-14Changed type of `number' to size_t.Sergey Poznyakoff1
2002-12-12Allow #include within a :text blockSergey Poznyakoff1
2002-12-10(i_octet_regex): Removed misleading comment.Sergey Poznyakoff1
2002-12-10Initialize automatic variable.Sergey Poznyakoff1
2002-12-10(sieve_argp_parser): Always add SIEVE_MODDIR to sieve_library_path.Sergey Poznyakoff1
2002-12-10(sieve_register_standard_actions): Register "fileinto" in non-requiredSergey Poznyakoff1
state to comply to the RFC.
2002-12-10Use SIEVE_MODDIR.Sergey Poznyakoff1
2002-12-10New extension statement #searchpath controls the search path for dynamically ↵Sergey Poznyakoff1
loaded extensions.
2002-12-10(sieve_load_add_path,sieve_load_add_dir): New functions.Sergey Poznyakoff2
2002-12-10Added argp.cSergey Poznyakoff1
2002-12-10New file. Sieve-specific command line handling.Sergey Poznyakoff1
2002-12-09(_comp_action): Do not run comparator if the sample is NULL.Sergey Poznyakoff1
2002-12-09(_get_address_part): Bugfix: assign to *data only if ret is not null.Sergey Poznyakoff1
2002-12-09(statement production): Bugfix: do notSergey Poznyakoff1
run sieve_slist_destroy on the list, just list_destroy. All the items are already registered in the memory pool and will be freed by sieve_machine_destroy.
2002-12-09(build_mime,sieve_action_redirect): free return from mu_get_user_email().Sergey Poznyakoff1
2002-12-03(sieve_action_reject): Fixed diagnostic messages.Sergey Poznyakoff1
2002-11-30(sieve_machine_init): Fixed inconsistent return value.Sergey Poznyakoff1
2002-11-30(sieve_action_keep): Remove the delete mark from the message.Sergey Poznyakoff1
2002-11-27fixed compilation without libltdlFrederic Gobry1
2002-11-25Use sieve_m.* memory allocation functions.Sergey Poznyakoff4
2002-11-25(sieve_malloc,sieve_mstrdup,sieve_mrealloc,sieve_mfree): New functions.Sergey Poznyakoff1
2002-11-24Removed debugging hacks. Always call lt_dlinitSergey Poznyakoff1
and add a call to lt_dlexit to the destructor.
2002-11-22(sieve_require_action, sieve_require_test): New functions.Sergey Poznyakoff1
2002-11-22(sieve_require_comparator): Implemented loadable comparators.Sergey Poznyakoff1
2002-11-22(sieve_require): Implemented loadable tests.Sergey Poznyakoff1
2002-11-22Added load.cSergey Poznyakoff1
2002-11-22Support for loadable extensions for sieveSergey Poznyakoff1
2002-11-20(sieve_tag_lookup): New function.Sergey Poznyakoff1
2002-11-20Adjust for the recent changes in symbol space functionsSergey Poznyakoff1
(sieve_test_header): New tag :mime. Directs header to test headers in all parts of a multipart message, not only main message headers.

Return to:

Send suggestions and report system problems to the System administrator.