aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove memcached support.Vsevolod Stakhov2014-04-301-1/+0
|
* Refactor config API.Vsevolod Stakhov2014-04-301-14/+6
|
* Rework worker utilities.Vsevolod Stakhov2014-04-301-31/+1
|
* Use unified signal handlers.Vsevolod Stakhov2014-04-221-1/+0
|
* Refactor task functions.Vsevolod Stakhov2014-04-211-22/+0
|
* Deprecate views: never ever being used.Vsevolod Stakhov2014-04-211-1/+0
|
* Refactor worker task structure and API.Vsevolod Stakhov2014-04-211-101/+6
|
* Refactor memory pool naming.Vsevolod Stakhov2014-04-201-3/+3
|
* Add Log header to prevent logging of a task.Vsevolod Stakhov2014-03-081-0/+1
|
* Move fin_task to a common rspamd_fin_task function.Vsevolod Stakhov2014-01-211-0/+13
|
* Simplify states of task. Disable broken code.Vsevolod Stakhov2014-01-191-6/+2
|
* Parse HTTP requests, cleanup the code.Vsevolod Stakhov2014-01-181-6/+1
| | | | | --HG-- extra : rebase_source : 6b35fbf55fc9fe65d7f033620670bb210928e9b4
* Start moving to HTTP world.Vsevolod Stakhov2014-01-121-1/+3
|
* Add hostname attribute to rspamc protocol.Vsevolod Stakhov2014-01-061-0/+1
|
* Rework rspamd DNS resolver.Vsevolod Stakhov2013-12-101-10/+0
|
* Randomize source port to make a DNS request.Vsevolod Stakhov2013-12-091-0/+1
|
* Fix race condition in the controller IO.Vsevolod Stakhov2013-12-041-2/+2
|
* Rework build and install paths.Vsevolod Stakhov2013-11-191-1/+1
|
* Allow xml->ucl config conversion.Vsevolod Stakhov2013-10-261-1/+1
| | | | | | | Now it is possible to read UCL configs directly and convert legacy XML to UCL by --convert-config option. Default config is now rspamd.conf, not rspamd.xml.
* Fix build for an old libevent.Vsevolod Stakhov2013-07-241-1/+1
|
* Allow listening on multiply addresses.Vsevolod Stakhov2013-07-201-1/+26
| | | | | | | Now rspamd can listen on multiply ipv4/ipv6 addresses. Removed legacy workers (lmtp, kvstorage) as they are never used in production. Try to unify workers initialization.
* * Add rolling history feature saving last 200 scanned messages.Vsevolod Stakhov2013-01-071-0/+3
| | | | Add /history command handler in webui.
* * Initial approach to RESTful controller.Vsevolod Stakhov2012-09-141-3/+10
| | | | Fix security issues in fstring handling.
* Avoid using global 'counters' hash, include it in struct rspamd_main.Vsevolod Stakhov2012-06-071-0/+1
| | | | | Move worker related utils to separate file and include it in rspamd-mime library. Add some cross-dependencies.
* * Fix spf plugin that was broken in 0.4.7Vsevolod Stakhov2012-04-201-0/+11
| | | | * Add partial ipv6 support for some rspamd modules.
* * Implement pre-filters that realizes concepts to check mail by some ↵Vsevolod Stakhov2012-03-301-0/+6
| | | | | | | | absolute values like: - greylisting - DNS BL/WL - ratelimits
* * Improve statistics for scanned messages.Vsevolod Stakhov2012-03-261-4/+3
|
* * Introduce new system of worker's and modules initialization:Vsevolod Stakhov2012-01-161-14/+7
| | | | | | | | - Removed legacy limitation of worker's types; - Using GQuarks to identify workers and modules; - Remove modules.sh script; - Add a common system of workers and modules; - Write management and configuration for new architecture.
* Allow for post filters to register async events.Vsevolod Stakhov2011-12-161-0/+1
| | | | Some fixes to lua redis library.
* * Finally get rid of stupid savepoints system and migrate to async events ↵Vsevolod Stakhov2011-12-141-10/+0
| | | | | | logic completely Fix lua redis library.
* Reorganize util.c as it should contain only common utilities.Vsevolod Stakhov2011-12-071-0/+18
| | | | Libkvstorage client is now deprecated as I plan to replace it with hiredis library.
* * Fix reopening of logs in case of privilleged run.Vsevolod Stakhov2011-11-301-0/+3
|
* Check for SIGUSR1 by libevent to avoid signals collisions.Vsevolod Stakhov2011-11-301-3/+2
| | | | Remove greylist_storage as it was never used and is actually replaced with basic kvstorage.
* Fix main rspamd worker to work with buffer.c changes.Vsevolod Stakhov2011-11-071-1/+2
|
* * Use event_base thread safe API to allow parallelism based on threadsVsevolod Stakhov2011-10-261-0/+2
|
* Try to check spf domain before adding it to LRU hash.Vsevolod Stakhov2011-10-061-1/+1
| | | | Make libutil functions ported from BSD compatible with libbsd in linux.
* * Introduce new system of contexts initialization. It would be used for ↵Vsevolod Stakhov2011-08-181-2/+5
| | | | | | other things in rspamd as well in future. Ignore unknown headers in case of http.
* * Add learn_spam/learn_ham interface to librspamdclient and to rspamcVsevolod Stakhov2011-07-141-0/+1
| | | | | * Improve logic of io dispatcher restoration Remove correction factor from bayes as it leads to classify errors.
* * First commit to implement multi-statfile filter system with new learning ↵Vsevolod Stakhov2011-07-121-0/+4
| | | | mechanizm (untested yet)
* * Welcome 0.4.0Vsevolod Stakhov2011-06-241-0/+7
| | | | | | | | | | | | | | | | | | Uncompatible changes: - Statistics is uncompatible in utf8 mode Major changes: - Improved utf8 mode - Convert all characters to lowercase in statistics - Skip URL's in statistics - Improve speed of bayes classifier by using integer arithmetics - Fixed statfiles synchronization that was broken for a long time - Synchronization is now configurable Minor changes: - Bugfixes - Removed some of legacy code - Types polishing
* * Fix error in raw headers parsingVsevolod Stakhov2011-05-241-2/+2
| | | | * Improve speed of raw headers access
* * Rework build process:Vsevolod Stakhov2011-05-101-12/+2
| | | | | | | | | | - add librspamdserver - link this library to all daemons and utils of rspamd - use subdirectories more often * Rework global variables logic - move them to the main process * Fix logging to handle utf-8 correctly * Add statshow utility and make it working * Move printf functions to separate source file
* * Add ability to learn rspamd via worker (without password)0.3.11Vsevolod Stakhov2011-03-311-13/+16
|
* * Preload statfiles at the early beginning in the main processVsevolod Stakhov2011-03-311-0/+2
| | | | | * Add JSON output for rspamd worker * Add HTTP protocol support for rspamd worker
* * Add more timeouts: for fuzzy operations, for worker task operationsVsevolod Stakhov2011-03-281-2/+1
| | | | Handle miliseconds using a common macro.
* Write to log number of dns requests per task.Vsevolod Stakhov2011-03-251-0/+2
|
* * Rewrite URL storage systemVsevolod Stakhov2011-02-241-2/+2
|
* * Process raw headers by FSM.Vsevolod Stakhov2011-02-211-0/+1
| | | | * Add methods for accessing raw_headers from lua and C
* * New module for checking emails inside messages (rules based, like multimap)Vsevolod Stakhov2011-02-031-0/+1
| | | | | | | * Emails now are separated from urls and urls checks * Add ability to check text attachements if option is presented in a configuration Version is 0.3.6 now
* * Start new rspamd 0.3.4Vsevolod Stakhov2010-12-031-3/+7
| | | | * Add ability to manage per-module, per-worker and per-classifier options in XML parser