Issue: #97
Submitted by: @eneq123
for (i = METRIC_ACTION_REJECT; i < METRIC_ACTION_MAX; i++) {
c->actions[i].score = -1.0;
}
+ c->subject = SPAM_SUBJECT;
rspamd_mempool_add_destructor (cfg->cfg_pool,
(rspamd_mempool_destruct_t) g_hash_table_destroy,
c->symbols);
make_rewritten_subject (struct metric *metric, struct rspamd_task *task)
{
static gchar subj_buf[1024];
- gchar *p = subj_buf, *end, *c, *res;
- const gchar *s;
+ gchar *p = subj_buf, *end, *res;
+ const gchar *s, *c;
end = p + sizeof(subj_buf);
c = metric->subject;
+ if (c == NULL) {
+ c = SPAM_SUBJECT;
+ }
+
s = g_mime_message_get_subject (task->message);
while (p < end) {