* @param {string} action name to set
*/
LUA_FUNCTION_DEF (task, set_metric_action);
+/***
+ * @method task:set_metric_subject(subject)
+ * Set the subject in the default metric
+ * @param {string} subject subject to set
+ */
+LUA_FUNCTION_DEF (task, set_metric_subject);
/***
* @method task:learn(is_spam[, classifier)
LUA_INTERFACE_DEF (task, get_metric_action),
LUA_INTERFACE_DEF (task, set_metric_score),
LUA_INTERFACE_DEF (task, set_metric_action),
+ LUA_INTERFACE_DEF (task, set_metric_subject),
LUA_INTERFACE_DEF (task, learn),
LUA_INTERFACE_DEF (task, set_settings),
LUA_INTERFACE_DEF (task, get_settings),
return 1;
}
+static gint
+lua_task_set_metric_subject (lua_State *L)
+{
+ struct rspamd_task *task = lua_check_task (L, 1);
+ const gchar *subject;
+ struct rspamd_metric *metric;
+
+ metric = task->cfg->default_metric;
+ subject = luaL_checkstring (L, 2);
+
+ if (task && metric && subject) {
+ metric->subject = subject;
+ lua_pushboolean (L, true);
+ }
+ else {
+ return luaL_error (L, "invalid arguments");
+ }
+
+ return 1;
+}
+
/* Image functions */
static gint
lua_image_get_width (lua_State *L)