/usr/include/dovecot/sieve/sieve-runtime.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 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | /* Copyright (c) 2002-2013 Pigeonhole authors, see the included COPYING file
*/
#ifndef __SIEVE_RUNTIME_H
#define __SIEVE_RUNTIME_H
#include "sieve-common.h"
/*
* Runtime environment
*/
struct sieve_runtime_env {
/* Interpreter */
struct sieve_instance *svinst;
struct sieve_interpreter *interp;
enum sieve_runtime_flags flags;
struct sieve_error_handler *ehandler;
/* Executing script */
struct sieve_script *script;
const struct sieve_script_env *scriptenv;
struct sieve_exec_status *exec_status;
/* Executing binary */
struct sieve_binary *sbin;
struct sieve_binary_block *sblock;
/* Current code */
sieve_size_t pc;
const struct sieve_operation *oprtn;
/* Tested message */
const struct sieve_message_data *msgdata;
struct sieve_message_context *msgctx;
/* Filter result */
struct sieve_result *result;
/* Runtime tracing */
struct sieve_runtime_trace *trace;
};
#endif /* __SIEVE_RUNTIME_H */
|