diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-06-23 19:05:58 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-06-23 19:05:58 +0400 |
commit | 5022c0333ffd8ce5eca3dc9e2679b612e2c9ce99 (patch) | |
tree | 4b7fd05c9f01700ea372fb941b87312fceece513 /src/message.h | |
parent | de94e18f57a0dccbab76efb3d574c0485a9e3700 (diff) | |
download | rspamd-5022c0333ffd8ce5eca3dc9e2679b612e2c9ce99.tar.gz rspamd-5022c0333ffd8ce5eca3dc9e2679b612e2c9ce99.zip |
* Fixes to fuzzy hashing logic, skip urls while estimating fuzzy hash
Fix tags stripping.
Fix phishing checks (ignore img tags).
Diffstat (limited to 'src/message.h')
-rw-r--r-- | src/message.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/message.h b/src/message.h index e70dd07e2..5f19ab892 100644 --- a/src/message.h +++ b/src/message.h @@ -30,9 +30,9 @@ struct mime_text_part { GByteArray *orig; GByteArray *content; GNode *html_nodes; - GTree *urls; - GTree *html_urls; + GList *urls_offset; /**< list of offsets of urls */ fuzzy_hash_t *fuzzy; + fuzzy_hash_t *double_fuzzy; GMimeObject *parent; }; |