]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
Release 0.8.2 0.8.2
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 10 Mar 2015 16:47:53 +0000 (16:47 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 10 Mar 2015 16:47:53 +0000 (16:47 +0000)
* Create fuzzy db if it does not exist
* Fix: Centos init script: configtest() (by @AlexeySa)
* Enable one_shot for RECEIVED_SPAMHAUS_XBL - Fixes #102 (by @fatalbanana)
* Update Exim patch (by @fatalbanana)
* Fix processing of unix sockets.
* Allow applying settings to authenticated users (by @fatalbanana)
* Make settings priorities work as documented (by @fatalbanana)
* Fix race condition in symbols planner
* Add DNSWL_BLOCKED symbol (by @fatalbanana)
* Make Exim pass usernames to rspamd (by @fatalbanana)
* Update RBL module (by @fatalbanana):
- fix indentation;
- collapse loops;
- avoid calling for un-needed information;
- allow disabling RBLs for authenticated users
* once_received.lua: Fix indentation & add exclusion for authenticated users (by @fatalbanana)
* hfilter.lua: Add exclusion for authenticated users (by @AlexeySa)
* Updates to hfilter rules (by @AlexeySa)
* Set empty <> user or addr for msgs without FROM (by @eneq123)
* Fix: attempt to index field '?' (a nil value) (by @eneq123)
* Fix: if not exist Date-header (by @AlexeySa)
* Add task:get_content() method.
* rbl.lua: Ignore private IP space (by @fatalbanana)
* Allow to check radix maps from lua by rspamd{ip}
* Make local exclusions configurable per-RBL (by @fatalbanana)
* Add rspamd_config:radix_from_config() (by @fatalbanana)
* Support emails dnsbl in rbl (by @fatalbanana)
* Complete rework of url extraction logic
* Allow customizations for unix sockets. (fixes #182)
* Set lua path according to rspamd settings.
* Import lua-functional for plugins stuff.
* Completely rewrite multimap plugin in functional style.
* Fix FORGED_MUA_THUNDERBIRD_MSGID (fixes #186)
* Check IPv6 addresses at dnswl.org and Spamhaus whitelist (by @fatalbanana)
* Add lowercase utility for utf8 strings.
* Various fixes to build system
* Updated debian configuration infrastructure (by @dottedmag)

Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
CMakeLists.txt
ChangeLog
centos/rspamd.spec

index 9e570a9910e4436e1c3acda0bc8eb4372eafe923..afa9f84ac6c37f8ac531a217aed42c0d90481848 100644 (file)
@@ -10,7 +10,7 @@ PROJECT(rspamd C)
 
 SET(RSPAMD_VERSION_MAJOR 0)
 SET(RSPAMD_VERSION_MINOR 8)
-SET(RSPAMD_VERSION_PATCH 1)
+SET(RSPAMD_VERSION_PATCH 2)
 
 SET(RSPAMD_VERSION         "${RSPAMD_VERSION_MAJOR}.${RSPAMD_VERSION_MINOR}.${RSPAMD_VERSION_PATCH}")
 SET(RSPAMD_MASTER_SITE_URL "https://rspamd.com")
index 0b39c838a467537e319f658d032f3ad014900c2d..23d887a235b182dda8d250b5fb2da829253c487d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,42 @@
+0.8.2:
+       * Create fuzzy db if it does not exist
+       * Fix: Centos init script: configtest() (by @AlexeySa)
+       * Enable one_shot for RECEIVED_SPAMHAUS_XBL - Fixes #102 (by @fatalbanana)
+       * Update Exim patch (by @fatalbanana)
+       * Fix processing of unix sockets.
+       * Allow applying settings to authenticated users (by @fatalbanana)
+       * Make settings priorities work as documented (by @fatalbanana)
+       * Fix race condition in symbols planner
+       * Add DNSWL_BLOCKED symbol (by @fatalbanana)
+       * Make Exim pass usernames to rspamd (by @fatalbanana)
+       * Update RBL module (by @fatalbanana):
+               - fix indentation;
+               - collapse loops;
+               - avoid calling for un-needed information;
+               - allow disabling RBLs for authenticated users
+       * once_received.lua: Fix indentation & add exclusion for authenticated users (by @fatalbanana)
+       * hfilter.lua: Add exclusion for authenticated users (by @AlexeySa)
+       * Updates to hfilter rules (by @AlexeySa)
+       * Set empty <> user or addr for msgs without FROM (by @eneq123)
+       * Fix: attempt to index field '?' (a nil value) (by @eneq123)
+       * Fix: if not exist Date-header (by @AlexeySa)
+       * Add task:get_content() method.
+       * rbl.lua: Ignore private IP space (by @fatalbanana)
+       * Allow to check radix maps from lua by rspamd{ip}
+       * Make local exclusions configurable per-RBL (by @fatalbanana)
+       * Add rspamd_config:radix_from_config() (by @fatalbanana)
+       * Support emails dnsbl in rbl (by @fatalbanana)
+       * Complete rework of url extraction logic
+       * Allow customizations for unix sockets. (fixes #182)
+       * Set lua path according to rspamd settings.
+       * Import lua-functional for plugins stuff.
+       * Completely rewrite multimap plugin in functional style.
+       * Fix FORGED_MUA_THUNDERBIRD_MSGID (fixes #186)
+       * Check IPv6 addresses at dnswl.org and Spamhaus whitelist (by @fatalbanana)
+       * Add lowercase utility for utf8 strings.
+       * Various fixes to build system
+       * Updated debian configuration infrastructure (by @dottedmag)
+
 0.8.1:
        * Add sqlite and perl as dependencies for RPM/Debian packages (by @fatalbanana)
        * Remove whitelist.lua from RPM file list (by @fatalbanana)
index 31ddee75ccdfc4158a8e347d6ca1cfc2536ce6a5..ec68d9350ae6c63321fd3ad6cf9541656cb49625 100644 (file)
@@ -16,7 +16,7 @@
 %endif
 
 Name:           rspamd
-Version:        0.8.1
+Version:        0.8.2
 Release:        1
 Summary:        Rapid spam filtering system
 Group:          System Environment/Daemons
@@ -232,6 +232,9 @@ fi
 %{rspamd_wwwdir}/*
 
 %changelog
+* Tue Mar 10 2015 Vsevolod Stakhov <vsevolod-at-highsecure.ru> 0.8.2-1
+- Update to 0.8.2
+
 * Fri Jan 23 2015 Vsevolod Stakhov <vsevolod-at-highsecure.ru> 0.8.1-1
 - Update to 0.8.1