1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/* Copyright (c) 2002-2012 Pigeonhole authors, see the included COPYING file
*/
/* Extension body
* ------------------
*
* Authors: Stephan Bosch
* Original CMUSieve implementation by Timo Sirainen
* Specification: RFC 5173
* Implementation: almost full, but text body-transform implementation is simple
* Status: testing
*
*/
/* FIXME:
*
* From RFC with respect to :text body transform:
*
* "Sophisticated implementations MAY strip mark-up from the text prior
* to matching, and MAY convert media types other than text to text
* prior to matching.
*
* (For example, they may be able to convert proprietary text editor
* formats to text or apply optical character recognition algorithms to
* image data.)"
*
* We might want to do this in the future, i.e. we must evaluate whether this is
* feasible.
*/
#include "lib.h"
#include "array.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-body-common.h"
/*
* Extension
*/
static bool ext_body_validator_load
(const struct sieve_extension *ext, struct sieve_validator *valdtr);
const struct sieve_extension_def body_extension = {
"body",
NULL, NULL,
ext_body_validator_load,
NULL, NULL, NULL, NULL, NULL,
SIEVE_EXT_DEFINE_OPERATION(body_operation),
SIEVE_EXT_DEFINE_NO_OPERANDS
};
static bool ext_body_validator_load
(const struct sieve_extension *ext, struct sieve_validator *valdtr)
{
/* Register new test */
sieve_validator_register_command(valdtr, ext, &body_test);
return TRUE;
}
|