aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.h
Commit message (Collapse)AuthorAgeFilesLines
...
* * Add support of custom filters in rspamd workercebka@lenovo-laptop2010-01-291-1/+0
| | | | | | - custom filters are dlopened and provides callbacks for user's input processing - custom filters can be used to extend rspamd functionality for unusual (non email processing cases) - custom filters allows to use rspamd async IO model and process management for performing custom network tasks
* * Introduce new logging system:Vsevolod Stakhov2009-12-221-6/+1
| | | | | | | | | - independent and customizeable buffering - line buffering - errors handling support - custom (ip based) debug - append function name automaticaly (based on __FUNCTION__) - add some logic to logs system
* * Adopt printf function from nginx for comfortable printing of some data ↵Vsevolod Stakhov2009-11-301-0/+4
| | | | | | | types (fixed strings, pids etc) * Fix work of http maps (they were broken in some places before) * Fix sync of statfiles (not fully tested yet)
* * Implement new system of managing rspamd processesVsevolod Stakhov2009-10-301-1/+2
|
* * Add ability to check views by client's ip (that ip from which we have a ↵Vsevolod Stakhov2009-10-271-0/+1
| | | | connection to rspamd)
* * Do not really check messages that should be skippedVsevolod Stakhov2009-10-191-0/+1
| | | | * Add Skip state for such messages (not False and not True)
* * Add ability for scanning non-mime (HTML) messagesVsevolod Stakhov2009-10-191-0/+2
|
* * Add reject score setting for hard rejecting of mail (by Anton Nekhoroshin)Vsevolod Stakhov2009-10-021-0/+1
| | | | * Add rspamc protocol 1.1 (3 marks instead of 2)
* * Implement new system of async events handling (experimental)Vsevolod Stakhov2009-09-221-0/+3
|
* * Cleanify logic of processes dispatcherVsevolod Stakhov2009-09-211-3/+0
|
* * Add lua plugin for checking received headersVsevolod Stakhov2009-09-151-1/+1
| | | | | | * Some tunes to lua API * Fix bug with http maps * Optimize installation and make custom prefix for configs
* * New system of classifiers interface and statfiles processingVsevolod Stakhov2009-09-141-3/+3
| | | | | | | * Fix sample config * Fix compile warnings * Fix building without lua support * Fix bugs with nrcpt header parsing and symbols cache loading (by Anton Nekhoroshikh)
* * Make settings workingVsevolod Stakhov2009-09-081-0/+2
|
* * Fix process dispatcherVsevolod Stakhov2009-08-201-2/+3
| | | | * Use bloom filter in fuzzy storage
* * Add support for extending controller protocol by modulesVsevolod Stakhov2009-07-291-0/+23
| | | | | | * Add write support via controller to fuzzy storage TODO: Add delete and check commands support to controller interface
* * Fix multipart nestingVsevolod Stakhov2009-07-271-0/+1
|
* * Add received headers parserVsevolod Stakhov2009-07-221-0/+1
|
* * Rework the whole filters systemVsevolod Stakhov2009-07-131-17/+3
| | | | | | | * Add metrics optimization and symbols cache * Change all plugins [DRAGONS]: not for production usage, some things are still not working!
* * Add views support (not completely tested yet)Vsevolod Stakhov2009-06-291-0/+3
|
* * Introduce new system of workers spawning and configuring, now rspamd can ↵Vsevolod Stakhov2009-06-171-3/+6
| | | | | | | be easily extended by new types of wrokers * Rework config system and avoid from using queue (3) lists * Upgrade version to 0.2.0 as config format is now incompatible with older one
* * Use own logging system to use static logging buffer instead of dynamically ↵Vsevolod Stakhov2009-06-161-4/+5
| | | | allocated one
* * Add module for blacklisting emails (self documented in sample config)Vsevolod Stakhov2009-06-151-0/+1
| | | | | | | * Add command 'emails' for extracting emails from a message * Rework protocol layout to allow expanding rspamd protocol by custom commands that can be added from anywhere in code * Allow rspamc to work without strictly parameter 'command'. Command by default is 'symbols'. * Update version to 0.1.8
* * Rework url parsing algorithmsVsevolod Stakhov2009-06-021-1/+1
| | | | | | | * Adopt all parts of rspamd for new url parser * Improve url-extracter utility by avoiding cut&paste of mime parsing * Small fixes to rspamc client * Bump version to 0.1.3
* * Add counters for rspamd symbolsVsevolod Stakhov2009-05-041-0/+6
| | | | * Fix shared hashes
* * Add per-task regexp results cache, that would optimize regexp engine ↵Vsevolod Stakhov2009-04-051-0/+1
| | | | | | performance by avoiding multiply match of the same regexp
* * Add 3 functions:Vsevolod Stakhov2009-03-301-0/+1
| | | | | | | | - is_recipients_sorted - has_only_html_part - compare_recipients_distance * Update documentation * Fix build
* * Log scan time and scan length of messagesVsevolod Stakhov2009-03-251-0/+1
| | | | * Remove 2 memory leaks
* * Fix error in expression parser that causes bad errors with expressions ↵Vsevolod Stakhov2009-03-231-0/+1
| | | | | | | | | | | | 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 functions support to rspamd regexpsVsevolod Stakhov2009-03-191-11/+0
| | | | | | | | * Parse expressions with state machine which allows different kinds of arguments in expressions * Fix test to accord current data * Add support of fucntions to regexp module * Move all regexp logic to separate file, describe its API * Fix descriptors leakage in surbl module
* * Add ability to match raw headersVsevolod Stakhov2009-03-171-0/+1
| | | | * Update documentation
* * Add log line for each message in SA styleVsevolod Stakhov2009-03-111-0/+1
|
* * Fix redirector connection procedureVsevolod Stakhov2009-03-101-0/+1
| | | | | | | | * Add more strict login * Add new header Queue-ID to protocol * Log message id or queue id * Add config file for redirector * Add ability to set regexp and domains list to check with redirector
* * Fix logging when process is startingVsevolod Stakhov2009-02-261-1/+1
| | | | | * Add -t option for config testing * Try to search default config in install prefix not in current directory
* * Add support of LMTP/SMTP deliveryVsevolod Stakhov2009-02-251-0/+5
|
* * Add initial LMTP support and LDA delivery to rspamdVsevolod Stakhov2009-02-241-0/+3
|
* * Implement rspamd IO with IO dispatcher (TODO: still some issues with ↵Vsevolod Stakhov2009-02-191-4/+5
| | | | timeouts must be resolved)
* * Prepare to migrate to cmake (still need to write install target and ↵Vsevolod Stakhov2009-02-161-20/+0
| | | | | | | | working with XS implicitly) * Move all system includes to one file where we detect availability of all that includes * Fix license misprint * Fix some issues with perl initializing
* * Remove unused field from task objectVsevolod Stakhov2009-02-131-1/+0
| | | | * Use separate hashes for blessing different object
* * Add log function to perl APIVsevolod Stakhov2009-02-121-1/+1
| | | | * Prepare for more detailed work on rspamd perl API
* * Make doxygen happy about structures membersVsevolod Stakhov2009-02-061-79/+80
|
* * Add some comments and documentationVsevolod Stakhov2009-02-051-94/+117
|
* * Rewrite message parserVsevolod Stakhov2009-01-211-8/+5
| | | | | | * Change mime parts storage * Add html tags striping (ported from php code) * Rework learning to process only text and striped html parts
* * Fix errors in learning implementationVsevolod Stakhov2009-01-111-0/+2
|
* * Implement learning using classifiers and tokenizers APIVsevolod Stakhov2008-12-081-0/+3
|
* * Add learning interface to rspamd (still requires classifier to work)Vsevolod Stakhov2008-12-021-0/+12
|
* * Reorganize structure of source filesVsevolod Stakhov2008-11-011-0/+201
* Adopt build system for new structure --HG-- rename : cfg_file.h => src/cfg_file.h rename : cfg_file.l => src/cfg_file.l rename : cfg_file.y => src/cfg_file.y rename : cfg_utils.c => src/cfg_utils.c rename : controller.c => src/controller.c rename : filter.c => src/filter.c rename : filter.h => src/filter.h rename : fstring.c => src/fstring.c rename : fstring.h => src/fstring.h rename : main.c => src/main.c rename : main.h => src/main.h rename : mem_pool.c => src/mem_pool.c rename : mem_pool.h => src/mem_pool.h rename : memcached-test.c => src/memcached-test.c rename : memcached.c => src/memcached.c rename : memcached.h => src/memcached.h rename : perl.c => src/perl.c rename : perl.h => src/perl.h rename : plugins/regexp.c => src/plugins/regexp.c rename : plugins/surbl.c => src/plugins/surbl.c rename : protocol.c => src/protocol.c rename : protocol.h => src/protocol.h rename : upstream.c => src/upstream.c rename : upstream.h => src/upstream.h rename : url.c => src/url.c rename : url.h => src/url.h rename : util.c => src/util.c rename : util.h => src/util.h rename : worker.c => src/worker.c