aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2020-03-18 15:57:53 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2020-03-18 15:57:53 +0000
commit11ab7477edb01d29f6c9e2c4dfb32dd8ef60bb3e (patch)
treed401f23003235a991851333484774b89ac69ba4e
parent6581dc09e6ca1e8114430b9c921012c885959384 (diff)
downloadrspamd-11ab7477edb01d29f6c9e2c4dfb32dd8ef60bb3e.tar.gz
rspamd-11ab7477edb01d29f6c9e2c4dfb32dd8ef60bb3e.zip
[Fix] Fix flags that caused force_actions failure
Issue: #3299
-rw-r--r--src/libmime/scan_result.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmime/scan_result.h b/src/libmime/scan_result.h
index 31a57a43a..3f9a6efe8 100644
--- a/src/libmime/scan_result.h
+++ b/src/libmime/scan_result.h
@@ -52,7 +52,7 @@ struct rspamd_symbol_result {
#define RSPAMD_PASSTHROUGH_CRITICAL 3
#define RSPAMD_PASSTHROUGH_LEAST (1u << 0u)
-#define RSPAMD_PASSTHROUGH_NO_SMTP_MESSAGE (1u << 0u)
+#define RSPAMD_PASSTHROUGH_NO_SMTP_MESSAGE (1u << 1u)
struct rspamd_passthrough_result {
struct rspamd_action *action;