diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-09-11 14:06:09 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-09-11 14:06:09 +0100 |
commit | d6b1bf98238fba5aa1c626b66998ec6509eea8cf (patch) | |
tree | 94d5070e1bdc44b625fe45ee9356e993f70cfa3b /src/libserver | |
parent | 9267cfb9d5a7be450ec3fd817856756370b4477b (diff) | |
download | rspamd-d6b1bf98238fba5aa1c626b66998ec6509eea8cf.tar.gz rspamd-d6b1bf98238fba5aa1c626b66998ec6509eea8cf.zip |
Release 0.7.0.0.7.0
* Use HTTP protocol for all operatiosn
* Webui worker is now removed and controller works as webui
* Allow to serve static files via controller by option `static_dir`
* Rspamd interface is now a part of rspamd
* Rspamc client has been rewritten to use HTTP and non-blocking mode
allowing to start multiple operations simultaneously (see `-n` option)
* Lua API was completely reworked to satisfy modern standards of LUA:
* Module `lua-message` was removed
* Reduced number of superglobals registered by rspamd
* Many functions has been redesigned
* Symbols registration is now more convenient
* Users settings has been rewritten as lua plugin
* Reworked headers system as gmime's based one misses many headers and is
very slow to get headers values
* Reorganized code and removed embedded jannsson by using UCL for all json
parsing
* Migrated to `librdns` for DNS resolving that improves concurrency for
DNS requests significantly
* Fixed tonns of bugs in MIME processing
* Improved metrcis and default symbol's weights
* Added new RBL's
* Fixed a number of issues in the modules
* Removed several memory leaks found
* Fix unicode processing
* Fix fuzzy checking for unicode parts
* Significantly improve documentation and especially LUA API docs
* See migration notes at https://rspamd.com/doc/migration.html
Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
Diffstat (limited to 'src/libserver')
-rw-r--r-- | src/libserver/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libserver/CMakeLists.txt b/src/libserver/CMakeLists.txt index ee0174ee4..02713af79 100644 --- a/src/libserver/CMakeLists.txt +++ b/src/libserver/CMakeLists.txt @@ -37,7 +37,6 @@ SET(CLASSIFIERSSRC ../classifiers/classifiers.c #ENDIF(WITH_SQLITE) ADD_LIBRARY(rspamd-server ${LINK_TYPE} ${LIBRSPAMDSERVERSRC} ${TOKENIZERSSRC} ${CLASSIFIERSSRC}) -ADD_PRECOMPILED_HEADER(rspamd-server "${CMAKE_BINARY_DIR}/src/config.h") IF(NOT DEBIAN_BUILD) SET_TARGET_PROPERTIES(rspamd-server PROPERTIES VERSION ${RSPAMD_VERSION}) ENDIF(NOT DEBIAN_BUILD) |