diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-03-18 15:57:53 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-03-18 15:57:53 +0000 |
commit | 11ab7477edb01d29f6c9e2c4dfb32dd8ef60bb3e (patch) | |
tree | d401f23003235a991851333484774b89ac69ba4e | |
parent | 6581dc09e6ca1e8114430b9c921012c885959384 (diff) | |
download | rspamd-11ab7477edb01d29f6c9e2c4dfb32dd8ef60bb3e.tar.gz rspamd-11ab7477edb01d29f6c9e2c4dfb32dd8ef60bb3e.zip |
[Fix] Fix flags that caused force_actions failure
Issue: #3299
-rw-r--r-- | src/libmime/scan_result.h | 2 |
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; |