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

imapsieve plugin: Added trace logging support.

parent c934cc42
No related branches found
No related tags found
No related merge requests found
...@@ -677,11 +677,14 @@ int imap_sieve_run_mail ...@@ -677,11 +677,14 @@ int imap_sieve_run_mail
const char *changed_flags) const char *changed_flags)
{ {
struct imap_sieve *isieve = isrun->isieve; struct imap_sieve *isieve = isrun->isieve;
struct sieve_instance *svinst = isieve->svinst;
const struct lda_settings *lda_set = isieve->lda_set; const struct lda_settings *lda_set = isieve->lda_set;
struct sieve_message_data msgdata; struct sieve_message_data msgdata;
struct sieve_script_env scriptenv; struct sieve_script_env scriptenv;
struct sieve_exec_status estatus; struct sieve_exec_status estatus;
struct imap_sieve_context context; struct imap_sieve_context context;
struct sieve_trace_config trace_config;
struct sieve_trace_log *trace_log;
int ret; int ret;
memset(&context, 0, sizeof(context)); memset(&context, 0, sizeof(context));
...@@ -690,6 +693,18 @@ int imap_sieve_run_mail ...@@ -690,6 +693,18 @@ int imap_sieve_run_mail
context.event.changed_flags = changed_flags; context.event.changed_flags = changed_flags;
context.isieve = isieve; context.isieve = isieve;
/* Initialize trace logging */
if ( sieve_trace_config_get(svinst, &trace_config) >= 0) {
const char *tr_label = t_strdup_printf
("%s.%s.%u", isieve->user->username,
mailbox_get_vname(isrun->mailbox), mail->uid);
if ( sieve_trace_log_open(svinst, tr_label, &trace_log) < 0 ) {
memset(&trace_config, 0, sizeof(trace_config));
trace_log = NULL;
}
}
T_BEGIN { T_BEGIN {
/* Collect necessary message data */ /* Collect necessary message data */
...@@ -714,6 +729,8 @@ int imap_sieve_run_mail ...@@ -714,6 +729,8 @@ int imap_sieve_run_mail
scriptenv.duplicate_check = imap_sieve_duplicate_check; scriptenv.duplicate_check = imap_sieve_duplicate_check;
scriptenv.duplicate_flush = imap_sieve_duplicate_flush; scriptenv.duplicate_flush = imap_sieve_duplicate_flush;
scriptenv.exec_status = &estatus; scriptenv.exec_status = &estatus;
scriptenv.trace_log = trace_log;
scriptenv.trace_config = trace_config;
scriptenv.script_context = (void *)&context; scriptenv.script_context = (void *)&context;
/* Execute script(s) */ /* Execute script(s) */
...@@ -721,5 +738,8 @@ int imap_sieve_run_mail ...@@ -721,5 +738,8 @@ int imap_sieve_run_mail
ret = imap_sieve_run_scripts(isrun, &msgdata, &scriptenv); ret = imap_sieve_run_scripts(isrun, &msgdata, &scriptenv);
} T_END; } T_END;
if ( trace_log != NULL )
sieve_trace_log_free(&trace_log);
return ret; return ret;
} }
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.