diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-02-13 15:27:04 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-02-13 15:27:04 +0000 |
commit | 5244d25f3b57d7c46ba82413aedc6116d6cb294c (patch) | |
tree | d9688b39d8ae0bf917345531a0b0eaf7a5b5e5e5 /src/libserver/url.h | |
parent | 5601ec0e3a065ed6b5a5f7a75e40ee350e9a53c5 (diff) | |
download | rspamd-5244d25f3b57d7c46ba82413aedc6116d6cb294c.tar.gz rspamd-5244d25f3b57d7c46ba82413aedc6116d6cb294c.zip |
[Feature] Add heuristic to find displayed URLs
Diffstat (limited to 'src/libserver/url.h')
-rw-r--r-- | src/libserver/url.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libserver/url.h b/src/libserver/url.h index f56649558..3fab46c5e 100644 --- a/src/libserver/url.h +++ b/src/libserver/url.h @@ -14,6 +14,8 @@ enum rspamd_url_flags { RSPAMD_URL_FLAG_NUMERIC = 1 << 1, RSPAMD_URL_FLAG_OBSCURED = 1 << 2, RSPAMD_URL_FLAG_REDIRECTED = 1 << 3, + RSPAMD_URL_FLAG_HTML_DISPLAYED = 1 << 4, + RSPAMD_URL_FLAG_FROM_TEXT = 1 << 5, }; struct rspamd_url_tag { |