Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | [Fix] Fix a failure calcuating URL reputation. | Phil Ross | 2019-10-25 | 1 | -5/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `url_reputation_filter` was attempting to lookup the token key returned in the `get_token` callback in an integer-indexed table of requests. Change to looking up the request by its index. Commit 73d2cee changed from using `gen_url_queries` to `lua_util.extract_specific_urls` in the assignment of `requests`. The latter just returns a list of URLs. The former returns the TLD along with the number of hits. The URL score calculation uses the number of hits. Revert to using `gen_url_queries`. | |||||
* | | | [Minor] Another uuencode fix | Vsevolod Stakhov | 2019-10-25 | 1 | -15/+13 | |
| |/ |/| | ||||||
* | | [Minor] Sigh, another next_check fixes for HTTP maps | Vsevolod Stakhov | 2019-10-25 | 1 | -17/+10 | |
| | | ||||||
* | | [Fix] Uuencode: Fix parsing of corrupted uuencode | Vsevolod Stakhov | 2019-10-25 | 2 | -4/+7 | |
| | | ||||||
* | | [Minor] Arc: Fix symbol insertion | Vsevolod Stakhov | 2019-10-25 | 1 | -1/+1 | |
| | | ||||||
* | | [Minor] Update cached files when checking HTTP maps | Vsevolod Stakhov | 2019-10-25 | 1 | -2/+78 | |
| | | ||||||
* | | [Minor] Reduce remain | Vsevolod Stakhov | 2019-10-25 | 1 | -0/+1 | |
| | | ||||||
* | | [Feature] SPF: Allow to disable AAAA checks in configuration | Vsevolod Stakhov | 2019-10-25 | 3 | -48/+71 | |
| | | ||||||
* | | [Minor] Oops, check for UBRK_DONE first | Vsevolod Stakhov | 2019-10-25 | 1 | -3/+3 | |
| | | ||||||
* | | [Minor] Try to fix HTTP maps check timeouts | Vsevolod Stakhov | 2019-10-25 | 1 | -10/+14 | |
| | | ||||||
* | | [Feature] Spf: Add limits configuration support | Vsevolod Stakhov | 2019-10-25 | 1 | -0/+52 | |
| | | ||||||
* | | [Feature] Implement configurable limits for SPF lookups | Vsevolod Stakhov | 2019-10-25 | 2 | -10/+65 | |
| | | ||||||
* | | [Minor] Fix misprint | Alexander Moisseev | 2019-10-24 | 1 | -1/+1 | |
| | | ||||||
* | | [Minor] Neural: Fix random sampling | Vsevolod Stakhov | 2019-10-24 | 1 | -2/+5 | |
| | | | | | | | | Issue: #3119 | |||||
* | | [Minor] Add safety check when using icu ubrk iterators | Vsevolod Stakhov | 2019-10-24 | 4 | -9/+46 | |
| | | ||||||
* | | Merge pull request #3115 from citrin/fix-lua-url-doc | Vsevolod Stakhov | 2019-10-23 | 1 | -1/+2 | |
|\ \ | | | | | | | Fix docs for rspamd_url lua module | |||||
| * | | [Minor] Document `image` flag in url:get_flags() | Anton Yuzhaninov | 2019-10-23 | 1 | -0/+1 | |
| | | | ||||||
| * | | [Minor] Fix doc comment for url.init | Anton Yuzhaninov | 2019-10-23 | 1 | -1/+1 | |
| | | | ||||||
* | | | [Feature] Support uuencoding | Vsevolod Stakhov | 2019-10-23 | 2 | -0/+66 | |
| | | | ||||||
* | | | [Feature] Add support of uudecode | Vsevolod Stakhov | 2019-10-23 | 2 | -17/+182 | |
|/ / | ||||||
* | | [Fix] Fix support of disable_monitoring in rbl | Vsevolod Stakhov | 2019-10-23 | 1 | -0/+1 | |
| | | ||||||
* | | [Minor] Fix documentation | Vsevolod Stakhov | 2019-10-23 | 1 | -1/+4 | |
| | | ||||||
* | | [Minor] Spamassassin: Exclude symbol name from options | Vsevolod Stakhov | 2019-10-23 | 1 | -3/+8 | |
| | | ||||||
* | | Merge pull request #3112 from denpaforks/p0f-devel | Vsevolod Stakhov | 2019-10-23 | 1 | -3/+3 | |
|\ \ | | | | | | | [Minor] Fixes for p0f plugin | |||||
| * | | [Minor] Fix x-os-fingerprint header | denpamusic | 2019-10-23 | 1 | -3/+3 | |
| |/ | | | | | | | Pass correct parameter to add_header function and use double when unpacking integers from mempool | |||||
* / | [Fix] Fix issues sending DMARC reports. | Phil Ross | 2019-10-23 | 1 | -14/+16 | |
|/ | | | | | | | | | | | | | | | | | | | | | | Processing the email template was causing a parse error (#3054). This was caused by the use of `{% ... %}` statements instead of `{= ... =}` output expressions. The message was failing to be sent over SMTP, closing the socket after reading the response to the DATA command and logging the following errors: > lua_tcp_arg_toiovec: bad argument at position -1 > lua_tcp_add_write: tcp request has bad data argument at pos 3 This was caused by the number of substitutions made by `gsub` being added to the message table. Sending would stop after processing the first message. This was caused by the sendmail callback function missing a call to `get_reporting_domain` on a successful outcome. Resolves #3054. | |||||
* | [Minor] Do not crash if redis cache cannot be reached | Vsevolod Stakhov | 2019-10-22 | 1 | -1/+1 | |
| | ||||||
* | [Minor] Log error in a more straightforward way | Vsevolod Stakhov | 2019-10-22 | 1 | -1/+2 | |
| | ||||||
* | [Fix] Important hiredis fixes | Vsevolod Stakhov | 2019-10-22 | 3 | -6/+57 | |
| | | | | | | | | | Hiredis can return error in two ways: - ctx is NULL and this path is usually handled properly - ctx->err is not REDIS_OK and this path is totally missing in many places This change should fix the both cases. | |||||
* | [Fix] Sigh, another email to string fix | Vsevolod Stakhov | 2019-10-22 | 1 | -15/+9 | |
| | ||||||
* | [Fix] Another fix for numeric urls parsing | Vsevolod Stakhov | 2019-10-22 | 1 | -18/+35 | |
| | ||||||
* | [Minor] Lua_url: Another fix for emails to string | Vsevolod Stakhov | 2019-10-22 | 1 | -4/+12 | |
| | ||||||
* | [Minor] Fix clang plugin functions on OSX | Vsevolod Stakhov | 2019-10-22 | 2 | -3/+3 | |
| | ||||||
* | [Fix] Fix misprint | Vsevolod Stakhov | 2019-10-21 | 1 | -1/+1 | |
| | ||||||
* | [Fix] Do not use strdup on data extracted from lua | Vsevolod Stakhov | 2019-10-21 | 1 | -2/+8 | |
| | ||||||
* | [Minor] Do not try to parse non-trivial parts as text parts | Vsevolod Stakhov | 2019-10-21 | 1 | -1/+2 | |
| | ||||||
* | [Minor] Do not do urf8 escape for non-utf8 regexps | Vsevolod Stakhov | 2019-10-21 | 1 | -2/+6 | |
| | ||||||
* | [Minor] Fix utf8 regexps escaping | Vsevolod Stakhov | 2019-10-21 | 1 | -7/+6 | |
| | ||||||
* | [Feature] Store etag in cached HTTP maps + better logging | Vsevolod Stakhov | 2019-10-21 | 2 | -11/+71 | |
| | ||||||
* | [Minor] Fix format string issues | Vsevolod Stakhov | 2019-10-21 | 1 | -29/+28 | |
| | ||||||
* | [Minor] Another try to fix races in redis stats | Vsevolod Stakhov | 2019-10-19 | 2 | -20/+43 | |
| | | | | Issue: #3088 | |||||
* | [Minor] Neural: One more corner case fix | Vsevolod Stakhov | 2019-10-18 | 1 | -4/+4 | |
| | ||||||
* | [Minor] Oops, fix misprint | Vsevolod Stakhov | 2019-10-18 | 1 | -1/+1 | |
| | ||||||
* | [Fix] Neural: Add protection agains infinities | Vsevolod Stakhov | 2019-10-18 | 1 | -1/+1 | |
| | ||||||
* | [CritFix] Fix dkim verification for multiple headers listed | Vsevolod Stakhov | 2019-10-18 | 1 | -11/+13 | |
| | | | | Issue: #3090 | |||||
* | [Minor] Neural: Add nan check and extensive logging | Vsevolod Stakhov | 2019-10-18 | 1 | -13/+33 | |
| | ||||||
* | [Minor] Neural: Remove 10% margin | Vsevolod Stakhov | 2019-10-18 | 1 | -1/+0 | |
| | ||||||
* | [Feature] Neural: Add sampling when storing training vectors | Vsevolod Stakhov | 2019-10-18 | 1 | -42/+72 | |
| | ||||||
* | [Minor] Neural: Improve logging | Vsevolod Stakhov | 2019-10-18 | 1 | -8/+14 | |
| | ||||||
* | [Fix] Lua_tcp: Deal with temporary fails on write | Vsevolod Stakhov | 2019-10-18 | 1 | -5/+12 | |
| | | | | Issue: #3097 |