-
Stephan Bosch authored
- Administrators now get properly notified about uncompiled global scripts and the inability of the sieve plugin to store global binaries. - Improved binary load/save error handling and fixed a few smal bugs. - Simplified ManageSieve error handling.
Stephan Bosch authored- Administrators now get properly notified about uncompiled global scripts and the inability of the sieve plugin to store global binaries. - Improved binary load/save error handling and fixed a few smal bugs. - Simplified ManageSieve error handling.
sieve-script-private.h 893 B
/* Copyright (c) 2002-2010 Dovecot Sieve authors, see the included COPYING file
*/
#ifndef __SIEVE_SCRIPT_PRIVATE_H
#define __SIEVE_SCRIPT_PRIVATE_H
#include "sieve-script.h"
/*
* Script object
*/
struct sieve_script {
pool_t pool;
unsigned int refcount;
struct sieve_instance *svinst;
struct stat st;
struct stat lnk_st;
time_t mtime;
struct sieve_error_handler *ehandler;
/* Parameters */
const char *name;
const char *basename;
const char *filename;
const char *path;
const char *dirpath;
const char *binpath;
/* Stream */
int fd; /* FIXME: we could use the stream's autoclose facility */
struct istream *stream;
};
struct sieve_script *sieve_script_init
(struct sieve_script *script, struct sieve_instance *svinst,
const char *path, const char *name, struct sieve_error_handler *ehandler,
enum sieve_error *error_r);
#endif /* __SIEVE_SCRIPT_PRIVATE_H */