summaryrefslogtreecommitdiffstats
path: root/src/plugins
Commit message (Collapse)AuthorAgeFilesLines
...
* Add DKIM support to RBL moduleAndrew Lewis2015-07-051-0/+48
|
* Add workarounds for numeric hosts in URLs.Vsevolod Stakhov2015-07-021-3/+3
|
* Merge pull request #316 from fatalbanana/masterVsevolod Stakhov2015-06-301-2/+4
|\ | | | | Fix use of RBL name as symbol; ignore RBL names that would not be yielded
| * Fix use of RBL name as symbol; ignore RBL names that would not be yieldedAndrew Lewis2015-06-301-2/+4
| |
* | Fix regexp_search invocation.Vsevolod Stakhov2015-06-301-1/+1
| |
* | Merge pull request #311 from fatalbanana/masterVsevolod Stakhov2015-06-291-1/+0
|\| | | | | Remove duplicated symbol registration
| * Remove duplicated symbol registrationAndrew Lewis2015-06-291-1/+0
| |
* | Use more recent lua conventions in emails module.Vsevolod Stakhov2015-06-281-16/+6
|/
* Fix settingsAndrew Lewis2015-06-271-0/+1
|
* Remove stupid debug.Vsevolod Stakhov2015-06-251-1/+1
|
* More fixes to tld match.Vsevolod Stakhov2015-06-251-2/+2
|
* Use tld for redirector's matching.Vsevolod Stakhov2015-06-251-2/+2
|
* Fix settings plugin.Vsevolod Stakhov2015-06-251-25/+22
|
* Merge pull request #303 from fatalbanana/masterVsevolod Stakhov2015-06-231-2/+23
|\ | | | | rbl.lua: Fix issues with application of whitelists
| * rbl.lua: Fix issues with application of whitelistsAndrew Lewis2015-06-231-2/+23
| |
* | Fix issues with bounces From processing.Vsevolod Stakhov2015-06-233-5/+7
| |
* | Merge pull request #300 from fatalbanana/masterVsevolod Stakhov2015-06-221-1/+16
|\| | | | | Don't use RWL_MAILSPIKE_POSSIBLE or DNSWL_BLOCKED for whitelisting
| * Add whitelist_exception setting to RBL moduleAndrew Lewis2015-06-221-1/+16
| |
* | Allow user@ and @domain matches in multimap.Vsevolod Stakhov2015-06-221-6/+32
|/
* Fix selecting URLs for sending to redirector.Vsevolod Stakhov2015-06-171-1/+13
|
* Fix dependencies for surbl module.Vsevolod Stakhov2015-06-122-0/+6
|
* Fix dependencies for SPF module.Vsevolod Stakhov2015-06-121-2/+22
|
* Fix dkim cache expiration.Vsevolod Stakhov2015-06-121-1/+1
|
* Fix dependencies in case of dkim plugin.Vsevolod Stakhov2015-06-101-1/+8
|
* Rework task processing.Vsevolod Stakhov2015-06-022-2/+2
|
* Fix lua plugins.Vsevolod Stakhov2015-05-287-78/+67
|
* Adopt internal modules.Vsevolod Stakhov2015-05-285-35/+62
|
* Refactor and unify function names.Vsevolod Stakhov2015-05-276-18/+18
|
* Fix plugins registration.Vsevolod Stakhov2015-05-276-20/+18
|
* If replacement cannot be applied, just remove regexp.Vsevolod Stakhov2015-05-261-0/+4
|
* Fix misprint in spamassassin plugin.Vsevolod Stakhov2015-05-261-1/+1
|
* Refactor events API.Vsevolod Stakhov2015-05-262-6/+6
|
* One more try to fix memset.Vsevolod Stakhov2015-05-194-7/+20
|
* Fix reloading of C plugins.Vsevolod Stakhov2015-05-193-3/+7
|
* Fix fuzzy mime strings with only type.Vsevolod Stakhov2015-05-191-0/+1
| | | | | Issue: #283 Reported by: @moisseev
* Plug another memory leak.Vsevolod Stakhov2015-05-131-1/+1
|
* Do not add IP maps twice.Vsevolod Stakhov2015-05-131-2/+0
|
* Fix forged recipients plugin for the modern rspamd.Vsevolod Stakhov2015-05-131-14/+6
|
* Whitelisted ip map should be radix, not hash.Vsevolod Stakhov2015-05-121-1/+1
|
* Skip unparseable DKIM signatures.Vsevolod Stakhov2015-05-121-0/+4
|
* Fix finding headers in HTTP messages.Vsevolod Stakhov2015-05-122-12/+13
|
* Deal with multiple signatures in DKIM.Vsevolod Stakhov2015-05-111-98/+161
| | | | Issue: #254
* Set re limit from regexp module.Vsevolod Stakhov2015-05-101-0/+1
|
* Add configuration alias to avoid ambiguity.Vsevolod Stakhov2015-05-091-0/+12
|
* Properly deal with negative scores and nice symbols.Vsevolod Stakhov2015-05-071-13/+19
|
* Implement match_limit in spamassassin plugin.Vsevolod Stakhov2015-05-071-7/+25
|
* Improve regexp items parsing diagnostics.Vsevolod Stakhov2015-05-071-3/+3
|
* Check smtp recipients before indexing.Vsevolod Stakhov2015-05-071-2/+3
|
* Fix uribls with no bits and ips.Vsevolod Stakhov2015-05-051-2/+2
|
* `get_all_opt` now flattens the content of objectsVsevolod Stakhov2015-05-053-3/+3
| | | | | | | | | | | | | | | | | | | | So now in a configuration with multiple section with the same name, for example: module { param1 = value1; param2 = value2; } module { param2 = value2_1; param3 = value3; } this function will return a single lua table that looks as following: param1 = value1, param2 = value2_1, param3 = value3