aboutsummaryrefslogtreecommitdiffstats
path: root/src/libserver/task.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libserver/task.h')
-rw-r--r--src/libserver/task.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libserver/task.h b/src/libserver/task.h
index 194003e72..8ab9514ce 100644
--- a/src/libserver/task.h
+++ b/src/libserver/task.h
@@ -50,9 +50,10 @@ enum rspamd_task_stage {
RSPAMD_TASK_STAGE_LEARN_PRE = (1 << 10),
RSPAMD_TASK_STAGE_LEARN = (1 << 11),
RSPAMD_TASK_STAGE_LEARN_POST = (1 << 12),
- RSPAMD_TASK_STAGE_IDEMPOTENT = (1 << 13),
- RSPAMD_TASK_STAGE_DONE = (1 << 14),
- RSPAMD_TASK_STAGE_REPLIED = (1 << 15)
+ RSPAMD_TASK_STAGE_COMPOSITES_POST = (1 << 13),
+ RSPAMD_TASK_STAGE_IDEMPOTENT = (1 << 14),
+ RSPAMD_TASK_STAGE_DONE = (1 << 15),
+ RSPAMD_TASK_STAGE_REPLIED = (1 << 16)
};
#define RSPAMD_TASK_PROCESS_ALL (RSPAMD_TASK_STAGE_CONNECT | \
@@ -68,6 +69,7 @@ enum rspamd_task_stage {
RSPAMD_TASK_STAGE_LEARN_PRE | \
RSPAMD_TASK_STAGE_LEARN | \
RSPAMD_TASK_STAGE_LEARN_POST | \
+ RSPAMD_TASK_STAGE_COMPOSITES_POST | \
RSPAMD_TASK_STAGE_IDEMPOTENT | \
RSPAMD_TASK_STAGE_DONE)
#define RSPAMD_TASK_PROCESS_LEARN (RSPAMD_TASK_STAGE_CONNECT | \