From f7548d6d28c313cf80e6f3ef89aed16a19815df1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:51:24 +0200 Subject: Adding upstream version 1:2.3.19.1+dfsg1. Signed-off-by: Daniel Baumann --- pigeonhole/src/lib-sieve/plugins/date/ext-date.c | 62 ++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 pigeonhole/src/lib-sieve/plugins/date/ext-date.c (limited to 'pigeonhole/src/lib-sieve/plugins/date/ext-date.c') diff --git a/pigeonhole/src/lib-sieve/plugins/date/ext-date.c b/pigeonhole/src/lib-sieve/plugins/date/ext-date.c new file mode 100644 index 0000000..3880d82 --- /dev/null +++ b/pigeonhole/src/lib-sieve/plugins/date/ext-date.c @@ -0,0 +1,62 @@ +/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file + */ + +/* Extension date + * ------------------ + * + * Authors: Stephan Bosch + * Specification: RFC 5260 + * Implementation: full + * Status: testing + * + */ + +#include "lib.h" +#include "array.h" + +#include "sieve-common.h" + +#include "sieve-extensions.h" +#include "sieve-commands.h" +#include "sieve-comparators.h" +#include "sieve-match-types.h" +#include "sieve-address-parts.h" + +#include "sieve-validator.h" +#include "sieve-generator.h" +#include "sieve-binary.h" +#include "sieve-interpreter.h" +#include "sieve-dump.h" + +#include "ext-date-common.h" + +/* + * Extension + */ + +static bool ext_date_validator_load +(const struct sieve_extension *ext, struct sieve_validator *validator); + +const struct sieve_operation_def *ext_date_operations[] = { + &date_operation, + ¤tdate_operation +}; + +const struct sieve_extension_def date_extension = { + .name = "date", + .validator_load = ext_date_validator_load, + .interpreter_load = ext_date_interpreter_load, + SIEVE_EXT_DEFINE_OPERATIONS(ext_date_operations) +}; + +static bool ext_date_validator_load +(const struct sieve_extension *ext, struct sieve_validator *valdtr) +{ + /* Register new test */ + sieve_validator_register_command(valdtr, ext, &date_test); + sieve_validator_register_command(valdtr, ext, ¤tdate_test); + + return TRUE; +} + + -- cgit v1.2.3