Skip to content
Snippets Groups Projects
Commit e81dd2cf authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Reworked previous change into three elegant macros.

parent 79d351ae
No related branches found
No related tags found
No related merge requests found
Next (in order of descending priority/precedence): Next (in order of descending priority/precedence):
* Review sieve-address parsing implementation for past-end checks * Review sieve-address parsing implementation for past-end checks
* Improve handling of old/corrupt binaries. * Improve handling of old/corrupt binaries.
* Move to 1.2 and start using mailbox_keyword_is_valid() and new const str.
* Test with dovecot --enable-debug for initial mempool allocation size * Test with dovecot --enable-debug for initial mempool allocation size
* Full standards compliance review for the engine and all fully implemented * Full standards compliance review for the engine and all fully implemented
...@@ -15,8 +16,6 @@ Next (in order of descending priority/precedence): ...@@ -15,8 +16,6 @@ Next (in order of descending priority/precedence):
* Full security review. Enforce limits on number of created objects, script * Full security review. Enforce limits on number of created objects, script
size, execution time, etc... size, execution time, etc...
* Make simple test suite for the base functionality * Make simple test suite for the base functionality
* Distinguish between 1.2 and 1.1 and start using mailbox_keyword_is_valid()
and new const str.
* ## MAKE A FIRST RELEASE ## * ## MAKE A FIRST RELEASE ##
......
...@@ -37,9 +37,9 @@ void sieve_verror ...@@ -37,9 +37,9 @@ void sieve_verror
if ( ehandler->log_master ) { if ( ehandler->log_master ) {
if ( location == NULL || *location == '\0' ) if ( location == NULL || *location == '\0' )
sieve_sys_verror(fmt, args); sieve_sys_error("%s", t_strdup_vprintf(fmt, args));
else else
sieve_sys_error("%s: %s", t_strdup_vprintf(fmt, args)); sieve_sys_error("%s: %s", location, t_strdup_vprintf(fmt, args));
} }
if ( sieve_errors_more_allowed(ehandler) ) { if ( sieve_errors_more_allowed(ehandler) ) {
...@@ -56,9 +56,9 @@ void sieve_vwarning ...@@ -56,9 +56,9 @@ void sieve_vwarning
if ( ehandler->log_master ) { if ( ehandler->log_master ) {
if ( location == NULL || *location == '\0' ) if ( location == NULL || *location == '\0' )
sieve_sys_vwarning(fmt, args); sieve_sys_warning("%s", t_strdup_vprintf(fmt, args));
else else
sieve_sys_warning("sieve: %s: %s", location, t_strdup_vprintf(fmt, args)); sieve_sys_warning("%s: %s", location, t_strdup_vprintf(fmt, args));
} }
ehandler->vwarning(ehandler, location, fmt, args); ehandler->vwarning(ehandler, location, fmt, args);
...@@ -73,7 +73,7 @@ void sieve_vinfo ...@@ -73,7 +73,7 @@ void sieve_vinfo
if ( ehandler->log_master ) { if ( ehandler->log_master ) {
if ( location == NULL || *location == '\0' ) if ( location == NULL || *location == '\0' )
sieve_sys_vinfo(fmt, args); sieve_sys_info("%s", t_strdup_vprintf(fmt, args));
else else
sieve_sys_info("%s: %s", location, t_strdup_vprintf(fmt, args)); sieve_sys_info("%s: %s", location, t_strdup_vprintf(fmt, args));
} }
...@@ -92,7 +92,7 @@ void sieve_vcritical ...@@ -92,7 +92,7 @@ void sieve_vcritical
tm = localtime(&ioloop_time); tm = localtime(&ioloop_time);
if ( location == NULL || *location == '\0' ) if ( location == NULL || *location == '\0' )
sieve_sys_verror(fmt, args); sieve_sys_error("%s", t_strdup_vprintf(fmt, args));
else else
sieve_sys_error("%s: %s", location, t_strdup_vprintf(fmt, args)); sieve_sys_error("%s: %s", location, t_strdup_vprintf(fmt, args));
......
...@@ -20,53 +20,12 @@ typedef void (*sieve_error_vfunc_t) ...@@ -20,53 +20,12 @@ typedef void (*sieve_error_vfunc_t)
/* /*
* System errors * System errors
* *
* FIXME: Low-level access to the Dovecot logging functions would be nice. * FIXME: Low-level access to the Dovecot logging functions would be useful.
*/ */
static inline void sieve_sys_verror(const char *fmt, va_list args) #define sieve_sys_error(...) i_error("sieve: " __VA_ARGS__ )
{ #define sieve_sys_warning(...) i_warning("sieve: " __VA_ARGS__ )
i_error("sieve: %s", t_strdup_vprintf(fmt, args)); #define sieve_sys_info(...) i_info("sieve: " __VA_ARGS__ )
}
static inline void sieve_sys_vwarning(const char *fmt, va_list args)
{
i_warning("sieve: %s", t_strdup_vprintf(fmt, args));
}
static inline void sieve_sys_vinfo(const char *fmt, va_list args)
{
i_info("sieve: %s", t_strdup_vprintf(fmt, args));
}
static inline void sieve_sys_error(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
T_BEGIN { sieve_sys_verror(fmt, args); } T_END;
va_end(args);
}
static inline void sieve_sys_warning(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
T_BEGIN { sieve_sys_vwarning(fmt, args); } T_END;
va_end(args);
}
static inline void sieve_sys_info(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
T_BEGIN { sieve_sys_vinfo(fmt, args); } T_END;
va_end(args);
}
/* For these functions it is the responsibility of the caller to /* For these functions it is the responsibility of the caller to
* manage the datastack. * manage the datastack.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

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.