summaryrefslogtreecommitdiffstats
path: root/src/worker.c
Commit message (Collapse)AuthorAgeFilesLines
* * Fix error in regexps results hashingVsevolod Stakhov2009-05-041-1/+1
|
* * Enable support of google perf toolsVsevolod Stakhov2009-05-041-5/+33
|
* * Fix ping commandVsevolod Stakhov2009-04-301-0/+2
|
* * Enable gprof supportVsevolod Stakhov2009-04-291-0/+16
|
* * Add per-task regexp results cache, that would optimize regexp engine ↵Vsevolod Stakhov2009-04-051-0/+2
| | | | | | performance by avoiding multiply match of the same regexp
* * Add ability to build rspamd without perl supportVsevolod Stakhov2009-03-271-3/+3
| | | | | * Fix creating of uinx socket * Improve some build issues
* * Fix 2 memory leaksVsevolod Stakhov2009-03-271-0/+3
| | | | * Fix uptime command output
* * Fix using of local variableVsevolod Stakhov2009-03-251-1/+3
|
* * More accurate work with clockVsevolod Stakhov2009-03-251-0/+6
|
* * Log scan time and scan length of messagesVsevolod Stakhov2009-03-251-0/+1
| | | | * Remove 2 memory leaks
* * Fix multiply accept issuesVsevolod Stakhov2009-03-241-0/+5
|
* * Fix many compile time warnings and polish codeVsevolod Stakhov2009-03-241-0/+3
|
* * Fix reload logicVsevolod Stakhov2009-03-131-0/+1
| | | | | * Create listen sock for lmtp in main processes dispatcher to allow multiply lmtp workers * Fix logic of logging
* * Fix redirector connection procedureVsevolod Stakhov2009-03-101-0/+9
| | | | | | | | * 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 2 memory issues:Vsevolod Stakhov2009-03-101-0/+7
| | | | | | - NULL string when trying to check url regexp - double free of message byte array as mime_stream frees memory in array if it thinks that stream is owner of array's memory
* * Remove several memory leaks (found by valgrind)Vsevolod Stakhov2009-03-061-1/+1
|
* * Unify socket creation and accepting by using utility functionsVsevolod Stakhov2009-03-031-13/+3
| | | | | | | * Check SO_ERROR on socket immideately after connect/bind to avoid resourses allocation for unsuccessful connections * Avoid descriptors leakage when we create sockets and have errors on them * Set on all socket descriptors FD_CLOEXEC flag to avoid problems with executing LDA
* * Remove %m from logging it seems to be unsupported by FreeBSD printf versionVsevolod Stakhov2009-03-021-4/+2
|
* * Fix dispatcher bugs and add some debug outputVsevolod Stakhov2009-03-021-3/+3
| | | | * Fix log output for surbl
* * Fix url-extracterVsevolod Stakhov2009-02-271-6/+12
| | | | | | * Fix soft-shutdown of dispacther * Turn debug on by default in cmake * Change logic of save points
* * Add support of LMTP/SMTP deliveryVsevolod Stakhov2009-02-251-6/+0
|
* * Add initial LMTP support and LDA delivery to rspamdVsevolod Stakhov2009-02-241-2/+0
|
* * Fix dispatcher timeouts handlingVsevolod Stakhov2009-02-201-4/+13
| | | | * Add wanna_die flag that can be used in dispatcher's callbacks
* * Implement rspamd IO with IO dispatcher (TODO: still some issues with ↵Vsevolod Stakhov2009-02-191-53/+34
| | | | timeouts must be resolved)
* * Prepare to migrate to cmake (still need to write install target and ↵Vsevolod Stakhov2009-02-161-24/+5
| | | | | | | | 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
* * Add BSD license textVsevolod Stakhov2009-02-161-0/+24
|
* * Try to fix reading a line from user (using pools)Vsevolod Stakhov2009-02-061-2/+5
|
* * Add some comments and documentationVsevolod Stakhov2009-02-051-2/+28
|
* * Fix bug with calling consolidation function after stop_pointVsevolod Stakhov2009-01-281-0/+1
| | | | | * Use shared memory for storing pool allocator statistics * Fix bug with processing statfiles results
* * Rework statfiles result processingVsevolod Stakhov2009-01-221-0/+2
| | | | * Fix small bug in protocol implementation (\r -> \r\n)
* * Rewrite message parserVsevolod Stakhov2009-01-211-101/+9
| | | | | | * Change mime parts storage * Add html tags striping (ported from php code) * Rework learning to process only text and striped html parts
* * Add simple utility for sending mail to rspamdVsevolod Stakhov2009-01-161-4/+3
| | | | * Fix some errors in freeing message object
* * Try to fix output from delayed filters processingVsevolod Stakhov2009-01-121-2/+3
|
* * Add function for adding rspamd report headersVsevolod Stakhov2008-12-171-0/+3
|
* * Reorganize structure of source filesVsevolod Stakhov2008-11-011-0/+364
* 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