diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-08-23 15:48:43 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-08-23 15:48:43 +0100 |
commit | 0b4c54e21874d6d622ab6820e36071c071e0c3e1 (patch) | |
tree | 6304c29b9a455e7b029ec33a95f1b4fc2ab4f72c /src/libserver/task.h | |
parent | 0f67ab52981f2c96abd2a43b9768b8e2df1eb777 (diff) | |
download | rspamd-0b4c54e21874d6d622ab6820e36071c071e0c3e1.tar.gz rspamd-0b4c54e21874d6d622ab6820e36071c071e0c3e1.zip |
[Feature] Allow parsing of mailbox messages from the commandline
Diffstat (limited to 'src/libserver/task.h')
-rw-r--r-- | src/libserver/task.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libserver/task.h b/src/libserver/task.h index f436c8275..1d75e31dc 100644 --- a/src/libserver/task.h +++ b/src/libserver/task.h @@ -103,6 +103,7 @@ enum rspamd_task_stage { #define RSPAMD_TASK_FLAG_HAS_SPAM_TOKENS (1 << 20) #define RSPAMD_TASK_FLAG_HAS_HAM_TOKENS (1 << 21) #define RSPAMD_TASK_FLAG_EMPTY (1 << 22) +#define RSPAMD_TASK_FLAG_LOCAL_CLIENT (1 << 23) #define RSPAMD_TASK_IS_SKIPPED(task) (((task)->flags & RSPAMD_TASK_FLAG_SKIP)) #define RSPAMD_TASK_IS_JSON(task) (((task)->flags & RSPAMD_TASK_FLAG_JSON)) |