Displaying 1 result from an estimated 1 matches for "event_create_passthrough".
2023 Mar 20
1
Dovecot unified event filtering
...ser->event);
event_set_name(plugin_event, "oidc_shared_mailboxes_plugin");
event_set_min_log_level(plugin_event, LOG_TYPE_WARNING);
event_set_append_log_prefix(plugin_event, "oidc-shared-mailboxes-plugin: ");
```
I then use passthrough events like the following:
```
e_debug(event_create_passthrough(data->event)->event(), "Modified mailbox_list_iter_init was called.");
e_warning(event_create_passthrough(event)->event(), "Did not find required key 'roles' in the JWT body.");
```
`e_warning` and `e_error` work fine.
If I understand the documentation for the...