diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-10-15 12:29:57 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-10-15 12:50:20 +0100 |
commit | b640dd764eae28ba67d1977196a46ca98d3de66b (patch) | |
tree | 9a65ccbea793c478abb05a18f7941e0a97268ec1 /src/libmime/scan_result.h | |
parent | 2986a7f98325b06341fc31a61954eb90e4086d84 (diff) | |
download | rspamd-b640dd764eae28ba67d1977196a46ca98d3de66b.tar.gz rspamd-b640dd764eae28ba67d1977196a46ca98d3de66b.zip |
[Minor] Add special flag to continue filters processing on passthrough result
Diffstat (limited to 'src/libmime/scan_result.h')
-rw-r--r-- | src/libmime/scan_result.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libmime/scan_result.h b/src/libmime/scan_result.h index edba4d491..d82699a91 100644 --- a/src/libmime/scan_result.h +++ b/src/libmime/scan_result.h @@ -53,6 +53,7 @@ struct rspamd_symbol_result { #define RSPAMD_PASSTHROUGH_LEAST (1u << 0u) #define RSPAMD_PASSTHROUGH_NO_SMTP_MESSAGE (1u << 1u) +#define RSPAMD_PASSTHROUGH_PROCESS_ALL (1u << 2u) struct rspamd_passthrough_result { struct rspamd_action *action; |