/usr/include/dovecot/sieve/sieve-settings.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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | /* Copyright (c) 2002-2013 Pigeonhole authors, see the included COPYING file
*/
#ifndef __SIEVE_SETTINGS_H
#define __SIEVE_SETTINGS_H
#include "sieve-common.h"
/*
* Settings
*/
static inline const char *sieve_setting_get
(struct sieve_instance *svinst, const char *identifier)
{
const struct sieve_callbacks *callbacks = svinst->callbacks;
if ( callbacks == NULL || callbacks->get_setting == NULL )
return NULL;
return callbacks->get_setting(svinst->context, identifier);
}
bool sieve_setting_get_uint_value
(struct sieve_instance *svinst, const char *setting,
unsigned long long int *value_r);
bool sieve_setting_get_int_value
(struct sieve_instance *svinst, const char *setting,
long long int *value_r);
bool sieve_setting_get_size_value
(struct sieve_instance *svinst, const char *setting,
size_t *value_r);
bool sieve_setting_get_bool_value
(struct sieve_instance *svinst, const char *setting,
bool *value_r);
bool sieve_setting_get_duration_value
(struct sieve_instance *svinst, const char *setting,
sieve_number_t *value_r);
/*
* Home directory
*/
static inline const char *sieve_environment_get_homedir
(struct sieve_instance *svinst)
{
const struct sieve_callbacks *callbacks = svinst->callbacks;
if ( svinst->home_dir != NULL )
return svinst->home_dir;
if ( callbacks == NULL || callbacks->get_homedir == NULL )
return NULL;
return callbacks->get_homedir(svinst->context);
}
#endif /* __SIEVE_SETTINGS_H */
|