st = g_slice_alloc0 (sizeof (*st));
st->classifier = cl;
st->stcf = stf;
- st->backend = bk;
- st->bkcf = bk->init (stat_ctx, cfg, st);
+
+ if (!(cl->cfg->flags & RSPAMD_FLAG_CLASSIFIER_NO_BACKEND)) {
+ st->backend = bk;
+ st->bkcf = bk->init (stat_ctx, cfg, st);
+ }
msg_debug_config ("added backend %s for symbol %s",
bk->name, stf->symbol);
}
}
- if (st->bkcf == NULL) {
+ if (st->bkcf == NULL &&
+ !(cl->cfg->flags & RSPAMD_FLAG_CLASSIFIER_NO_BACKEND)) {
msg_err_config ("cannot init backend %s for statfile %s",
clf->backend, stf->symbol);
for (j = 0; j < cl->statfiles_ids->len; j ++) {
id = g_array_index (cl->statfiles_ids, gint, j);
st = g_ptr_array_index (st_ctx->statfiles, id);
- st->backend->close (st->bkcf);
+ if (!(st->classifier->cfg->flags & RSPAMD_FLAG_CLASSIFIER_NO_BACKEND)) {
+ st->backend->close (st->bkcf);
+ }
g_slice_free1 (sizeof (*st), st);
}
for (i = 0; i < st_ctx->statfiles->len; i++) {
st = g_ptr_array_index (st_ctx->statfiles, i);
- bk_run = g_ptr_array_index (task->stat_runtimes, i);
cl = st->classifier;
+
+ if (cl->cfg->flags & RSPAMD_FLAG_CLASSIFIER_NO_BACKEND) {
+ continue;
+ }
+
+ bk_run = g_ptr_array_index (task->stat_runtimes, i);
g_assert (st != NULL);
if (bk_run != NULL) {
{
guint i;
struct rspamd_statfile *st;
+ struct rspamd_classifier *cl;
gpointer bk_run;
g_assert (task->stat_runtimes != NULL);
for (i = 0; i < st_ctx->statfiles->len; i++) {
st = g_ptr_array_index (st_ctx->statfiles, i);
+ cl = st->classifier;
+
+ if (cl->cfg->flags & RSPAMD_FLAG_CLASSIFIER_NO_BACKEND) {
+ continue;
+ }
+
bk_run = g_ptr_array_index (task->stat_runtimes, i);
g_assert (st != NULL);