Skip to content
Snippets Groups Projects
  • Stephan Bosch's avatar
    6f0cf81a
    Improved and simplified file error handling · 6f0cf81a
    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.
    6f0cf81a
    History
    Improved and simplified file 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 */

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.