aboutsummaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/rspamc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/rspamc.c b/src/client/rspamc.c
index b9fe5ff54..bad266b9e 100644
--- a/src/client/rspamc.c
+++ b/src/client/rspamc.c
@@ -642,7 +642,8 @@ rspamc_symbols_output (FILE *out, ucl_object_t *obj)
rspamd_fprintf (out, "DKIM-Signature: %s\n", ucl_object_tostring (
cur));
}
- else if (cur->type == UCL_OBJECT) {
+ else if (cur->type == UCL_OBJECT &&
+ g_ascii_strcasecmp (ucl_object_key (cur), "rmilter") != 0) {
/* Parse metric */
rspamc_metric_output (out, cur);
}