summaryrefslogtreecommitdiffstats
path: root/src/plugins/custom
Commit message (Collapse)AuthorAgeFilesLines
* * Fix build under CentOS 5 with old glib 2.12Vsevolod Stakhov2011-07-296-10/+10
| | | | | * Fix build of rspamd with CMAKE_BINARY_DIR differs from CMAKE_SOURCE_DIR Rework include style.
* Make own strlcpy that does not calculate remaining string length (faster and ↵Vsevolod Stakhov2010-11-162-3/+3
| | | | | | more safe) Allow only ASCII symbols in logs, escape control chars
* Fixes bugs found with clang-static analyser.Vsevolod Stakhov2010-10-111-1/+1
| | | | | Strictly follow c99 standart. Turn on pedantic c99 checks.
* * Fix strict aliasing while compiling with optimizationVsevolod Stakhov2010-05-311-3/+3
| | | | | * Fix tanhl detection for platforms that have not implementation of it * Remove several compile warnings
* * Make regmark customplugin workingVsevolod Stakhov2010-04-233-308/+312
|
* * Save prefixes in treescebka@lenovo-laptop2010-02-282-13/+37
|
* * Add custom filter for making marks for new user:cebka@lenovo-laptop2010-02-269-4/+892
| | | | | | - each username is passed throught metaphone filter - then we make prefix tree based on english letters from metaphone - then we are searching for the longest common string and output result (how many times we got that string)
* * Add first custom filter for making marks for ip addresses and networkscebka@lenovo-laptop2010-02-253-0/+440
* Some additions to radix tree library: - allow tree traverse - add new insert methods (add and replace) - store keys in radix nodes (thought we can calculate key by bits, but I think that storing key is not too expensive) - values in a tree are now uintptr_t