aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * Include sys/resource.h for getrlimitVsevolod Stakhov2009-04-152-0/+7
|
* * Try to convert each text part of messages to utf8 to avoid problems with ↵Vsevolod Stakhov2009-04-153-26/+71
| | | | regexps
* * Fix addresses filling in compare_distance functionVsevolod Stakhov2009-04-061-4/+2
|
* * Parse function's regexp using not temporary task pools, but permament ↵Vsevolod Stakhov2009-04-061-5/+5
| | | | config pool
* * When parse regexp save it to cache to make unique link betweenVsevolod Stakhov2009-04-051-2/+19
| | | | regexp text and regexp parsed structure
* * Add per-task regexp results cache, that would optimize regexp engine ↵Vsevolod Stakhov2009-04-055-14/+117
| | | | | | performance by avoiding multiply match of the same regexp
* * Check mime regexp only in text and html partsVsevolod Stakhov2009-04-034-5/+194
| | | | | | * Add 2 functions: - has_content_part(type, subtype) - has_content_part_len(type, subtype, min, max)
* * Optimize speed of regexp_match_number function by avoid of regexp checks ↵Vsevolod Stakhov2009-03-311-0/+3
| | | | when threshold is already reached
* * Fix comparing of internet addressesVsevolod Stakhov2009-03-311-11/+14
|
* * Fix order of functions argumentsVsevolod Stakhov2009-03-312-2/+7
| | | | * Do not try to check non-regexp expressions
* * Fix error in regexp processingVsevolod Stakhov2009-03-313-3/+8
|
* * Fix misprintVsevolod Stakhov2009-03-302-1/+2
|
* * Try to fix expression parser to support ',' inside regexp arguments of ↵Vsevolod Stakhov2009-03-301-35/+44
| | | | functions
* * Add 3 functions:Vsevolod Stakhov2009-03-308-5/+167
| | | | | | | | - is_recipients_sorted - has_only_html_part - compare_recipients_distance * Update documentation * Fix build
* * Add message handling functions to lua APIVsevolod Stakhov2009-03-309-39/+406
| | | | | * Add ability to add lua code in config with .lua and .endlua * Add consolidation functions support that are written in perl or lua
* * Make regexp cache functions public for using them in other placesVsevolod Stakhov2009-03-293-2/+62
| | | | | * Add function regexp_match_number that checks number of matched arguments: e.g.: regexp_match_number(2, ${__RE1}, ${__RE2}, header_exists(Subject))
* * Add ability for plugins to register its own functions in expression's parserVsevolod Stakhov2009-03-282-4/+34
|
* * Fix error in parser when parsing last ')' we need to remove '(' from stack ↵Vsevolod Stakhov2009-03-272-0/+4
| | | | as well
* * Another fix of uptime commandVsevolod Stakhov2009-03-271-2/+2
|
* * Fix variables substitutionVsevolod Stakhov2009-03-275-14/+92
| | | | | * Add simple lua interface to access task structures * Improve error reporting for regexp module
* * Add initial LUA filters supportVsevolod Stakhov2009-03-277-3/+246
|
* * Fix linking with libutilVsevolod Stakhov2009-03-271-0/+9
|
* * Fix build without perlVsevolod Stakhov2009-03-271-0/+9
|
* * Fix parsing regexp with '=' symbol insideVsevolod Stakhov2009-03-272-3/+15
| | | | * Fix config file syntax checking
* * Add ability to build rspamd without perl supportVsevolod Stakhov2009-03-278-52/+101
| | | | | * Fix creating of uinx socket * Improve some build issues
* * Fix 2 memory leaksVsevolod Stakhov2009-03-274-69/+96
| | | | * Fix uptime command output
* * Add statictics for all allocated poolsVsevolod Stakhov2009-03-263-2/+14
|
* * Unref wrapper as wellVsevolod Stakhov2009-03-261-0/+2
|
* * Do not try to process empty partsVsevolod Stakhov2009-03-261-21/+24
|
* * Unref stream to avoid memory leakingVsevolod Stakhov2009-03-251-1/+5
|
* * Fix using of local variableVsevolod Stakhov2009-03-252-2/+6
|
* * Fix log lineVsevolod Stakhov2009-03-251-1/+1
|
* * More accurate work with clockVsevolod Stakhov2009-03-258-9/+49
|
* * Log scan time and scan length of messagesVsevolod Stakhov2009-03-256-1/+23
| | | | * Remove 2 memory leaks
* * Fix multiply accept issuesVsevolod Stakhov2009-03-242-2/+14
|
* * Polish socket utility functionsVsevolod Stakhov2009-03-241-22/+16
|
* * Fix bug in expressions parser and optimizerVsevolod Stakhov2009-03-242-6/+4
|
* * Fix issue with including sys/uio.h for writev and readvVsevolod Stakhov2009-03-241-0/+5
|
* * Fix many compile time warnings and polish codeVsevolod Stakhov2009-03-2419-37/+76
|
* * Fix obtaining of content-typeVsevolod Stakhov2009-03-241-13/+28
|
* * Add functions to operate with content-type header and describe them in ↵Vsevolod Stakhov2009-03-242-0/+200
| | | | documentation
* * Fix expression optimizatorVsevolod Stakhov2009-03-241-1/+4
|
* * Fix XS module to work with current type of memory allocationVsevolod Stakhov2009-03-242-5/+21
|
* * Use pool allocator for temp strings in headersVsevolod Stakhov2009-03-244-13/+14
|
* * Add smart handling of message headersVsevolod Stakhov2009-03-246-270/+290
|
* * Fix variable substitutionVsevolod Stakhov2009-03-242-27/+64
| | | | * Add new command line parameter '-V' allowing to dump all variables of rspamd
* * Fix error in expression parser that causes bad errors with expressions ↵Vsevolod Stakhov2009-03-2316-19/+273
| | | | | | | | | | | | that have regexp at the end * Improve test for fuzzy hashes * Add new object - TextPart to perl XS library that allows access to stripped parts and fuzzy hashes * Add documentation for expressions parser and fot Mail::Rspamd::TextPart * Allways calculate fuzzy hash for text parts * Store text parts separately from other parts * Add compare_parts_distance for expressions that calculates difference in 2 parts messages * Do not try to substitute variables in empty strings
* * Add fuzzy hashes implementation (with adler-32 roll hash and FNV-32 hash)Vsevolod Stakhov2009-03-207-14/+364
| | | | * Add test case for fuzzy hashing check
* * Misprint in optimizer functionVsevolod Stakhov2009-03-191-2/+2
|
* * Fix bug in redirectorVsevolod Stakhov2009-03-192-1/+2
| | | | * Do not write info about redirects to log file as this info is already in redirector's log file