aboutsummaryrefslogtreecommitdiffstats
path: root/src/cfg_file.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2011-02-15 18:26:27 +0300
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2011-02-15 18:26:27 +0300
commit17a938b2aeffb3448c8d61f3d8dd7d012eb910cc (patch)
tree066cebe8b625a8b728ba17f1b3be8f2e80dce9c1 /src/cfg_file.h
parentbeab78097de6a53430bb16310e41b93d74546cb9 (diff)
downloadrspamd-17a938b2aeffb3448c8d61f3d8dd7d012eb910cc.tar.gz
rspamd-17a938b2aeffb3448c8d61f3d8dd7d012eb910cc.zip
* Add ability to specify 'S' flag to regexp that means that headers checks must be case sensitive
* Add lua function message:get_header_strong
Diffstat (limited to 'src/cfg_file.h')
-rw-r--r--src/cfg_file.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cfg_file.h b/src/cfg_file.h
index e33b1585a..09eea3976 100644
--- a/src/cfg_file.h
+++ b/src/cfg_file.h
@@ -93,6 +93,7 @@ struct rspamd_regexp {
gchar *header; /**< header name for header regexps */
gboolean is_test; /**< true if this expression must be tested */
gboolean is_raw; /**< true if this regexp is done by raw matching */
+ gboolean is_strong; /**< true if headers search must be case sensitive */
};
/**