/usr/include/dovecot/sieve/sieve-ext-environment.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /* Copyright (c) 2002-2013 Pigeonhole authors, see the included COPYING file
*/
#ifndef __SIEVE_EXT_ENVIRONMENT_H
#define __SIEVE_EXT_ENVIRONMENT_H
#include "sieve-common.h"
struct sieve_environment_item {
const char *name;
const char *value;
const char *(*get_value)
(struct sieve_instance *svinst, const struct sieve_script_env *senv);
};
void sieve_ext_environment_item_register
(const struct sieve_extension *ext,
const struct sieve_environment_item *item);
#endif
|