guint log_error_elt_maxlen; /**< maximum size of error log element */
gboolean mlock_statfile_pool; /**< use mlock (2) for locking statfiles */
+ gboolean compat_messages; /**< use old messages in the protocol (array) */
gboolean delivery_enable; /**< is delivery agent is enabled */
gchar *deliver_host; /**< host for mail deliviring */
gpointer lua_state; /**< pointer to lua state */
gchar * rrd_file; /**< rrd file to store statistics */
-
gchar * history_file; /**< file to save rolling history */
-
gchar * tld_file; /**< file to load effective tld list from */
-
gchar * hs_cache_dir; /**< directory to save hyperscan databases */
-
gchar * magic_file; /**< file to initialize libmagic */
gdouble dns_timeout; /**< timeout in milliseconds for waiting for dns reply */
G_STRUCT_OFFSET (struct rspamd_config, zstd_output_dictionary),
RSPAMD_CL_FLAG_STRING_PATH,
"Dictionary for outbound zstd compression");
+ rspamd_rcl_add_default_handler (sub,
+ "compat_messages",
+ rspamd_rcl_parse_struct_boolean,
+ G_STRUCT_OFFSET (struct rspamd_config, compat_messages),
+ 0,
+ "Use pre 1.4 style of messages in the protocol");
/* New DNS configuration */
ssub = rspamd_rcl_add_section_doc (&sub->subsections, "dns", NULL, NULL,
ucl_object_insert_key (top, obj, h, 0, false);
}
- ucl_object_insert_key (top, ucl_object_ref (task->messages),
+ if (G_UNLIKELY (task->cfg->compat_messages)) {
+ const ucl_object_t *cur;
+ ucl_object_t *msg_object;
+ ucl_object_iter_t iter = NULL;
+
+ msg_object = ucl_object_typed_new (UCL_ARRAY);
+
+ while ((cur = ucl_object_iterate (task->messages, &iter, true)) != NULL) {
+ if (cur->type == UCL_STRING) {
+ ucl_array_append (msg_object, ucl_object_ref (cur));
+ }
+ }
+
+ ucl_object_insert_key (top, msg_object, "messages", 0, false);
+ }
+ else {
+ ucl_object_insert_key (top, ucl_object_ref (task->messages),
"messages", 0, false);
+ }
if (task->cfg->log_urls || (task->flags & RSPAMD_TASK_FLAG_EXT_URLS)) {
if (g_hash_table_size (task->urls) > 0) {