You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChangeLog 45KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071
  1. 1.0.4:
  2. * Add configdump routine to rspamadm
  3. * Implement retransmits for fuzzy_check plugin
  4. * Fix events processing for learning anf checking fuzzy hashes
  5. * Avoid dependency on unneeded and uncompatible glib include
  6. * Add `historyreset` command to the controller
  7. * Fix loading of tokenizer config from dump (#389)
  8. * Add sorting hints for the history
  9. * Allow custom lua scripts for users/languages extraction (#388)
  10. * Do not add FORGED_RECIPIENTS when 'To' is missing (#387)
  11. * Do not add R_UNDISC_RCPT when 'To' is missing (#387)
  12. * Add encryption to fuzzy check plugin
  13. * Add encryption for fuzzy storage
  14. * Add new epoch for encrypted fuzzy request
  15. * Add encryption for `rspamd.com` storage
  16. * Remove gmime processing for LDA mode as it is deadly broken
  17. * Add routine to find end of headers position in mime messages
  18. * Fix LDA headers folding
  19. * Init libraries in rspamc client as well to avoid locale issues
  20. * Avoid collision with locally installed includes
  21. * Allocate and free memory with the same allocator in rspamadm (#385)
  22. * Preserve expired fuzzy hashes counter
  23. * Improvements in webui:
  24. - Add favicon.ico
  25. - Rework history table
  26. - Fix sorting for the history
  27. - Migrate to bootstrap 3 and jquery 2
  28. - Fix css bugs
  29. - Add glyphicons
  30. - Add reset history
  31. - Improve history buttons
  32. - Redraw graph to avoid display issues
  33. - Webui is now MIT licensed to match licensing policy of rspamd
  34. 1.0.3:
  35. * Fix piechart clean slice (#380)
  36. * Fix controller crashes when GString is reallocated (#381)
  37. * Correctly set locale before start
  38. * Set C locale for numeric values
  39. * Add rspamadm routine:
  40. - add `pw` command to manage passwords
  41. - add `help` command for displaying help
  42. - add `configtest` command to check configuration files
  43. - add `keypair` command for generating encryption keys
  44. - add `fuzzy_merge` routine to merge fuzzy sqlite databases
  45. - add a simple manual page for rspamadm
  46. * Allow metric registration for composite expressions
  47. * Add strict mode for configtest
  48. * Add logger counters
  49. * Save and show learned messages count (#383)
  50. * Add `no_stat` flag
  51. * Add `task:set_flag` and `task:get_flags` (#382)
  52. * Enable foreign keys in sqlite3
  53. * Remove orphaned shingles from fuzzy storage
  54. * Optimize synchronization steps for fuzzy storage
  55. * Allow delayed conditions registration
  56. * Add lua API for conditions registering
  57. 1.0.2:
  58. * Fix critical bug in webui that prevents password from being sent
  59. * Rework webui view:
  60. - Switch to d3.js for graphs
  61. - Improve piechart look
  62. - Rework colors for piechart
  63. - Fix layout for symbols
  64. - Fix refresh button
  65. * Add descriptions for whitelist maps
  66. * Fix build on arm (#379)
  67. * Fix issue with the last element in the radix trie
  68. * Add more tests for radix trie algorithm
  69. * Allow to extract URLs from query strings of other URLs (#361)
  70. * Initialize rrd fields before writing to file
  71. * Fix double free if no password has been specified
  72. 1.0.1:
  73. * Add writing to rrd from the controller
  74. * Fixed lots of bugs in rrd code
  75. * Adopt new DNS API in hfilter plugin (by @AlexeySa)
  76. * Allow only one controller process to manage rrd file
  77. * Set event base for fuzzy calls
  78. * Improve fuzzy IO errors logging
  79. * Add rra extraction function to rrd library
  80. * Add graph handler to the controller
  81. * Cache correct passwords to avoid too high CPU usage when working with webui
  82. * Controller sockets are owned by router do not export them to task
  83. * Optimize logging by skipping hash table search if it's empty
  84. * Fix loading issue whith broken statfiles
  85. * Print assertions from glib to rspamd logger
  86. * Load legacy `lua/rspamd.local.lua`
  87. * Update webui with some fixes to learning and scanning
  88. 1.0.0:
  89. * Rework symbols processing:
  90. - Improve sorting logic for symbols
  91. - Organize processing into multiple stages
  92. - Added asynchronous watchers for symbols
  93. - Added ability to organize dependencies between symbols
  94. * Fixed URL redirector:
  95. - Use optimized POE loop
  96. - Organize dependencies
  97. - Fix startup
  98. * New sqlite3 backend:
  99. - Allow to have per-languages and per-user statistics
  100. - Allow sqlite3 to be used as statistics backend
  101. * Store tokenizer configuration within statfiles
  102. * Improve bayes statistics:
  103. - Use headers and images metainformation in bayes
  104. - Suggest using of pre-processed tokens for statistics
  105. - Fix tokens normalization for OSB algorithm
  106. * Rewrite url parsing:
  107. - Fix numerous issues with url extraction and normalization
  108. - Fix mailto urls
  109. * Fix settings plugin to allow custom actions scores
  110. * Improve rbl plugin
  111. * Allow capturing patterns in rspamd lua regexp library
  112. * Add GTUBE support
  113. * Fix spamc legacy support
  114. * Add DKIM support to RBL module
  115. * Fix issues with multiple DKIM signatures
  116. * Fix issue if rspamd cannot create statfiles (#331)
  117. * Rework parts and task structure:
  118. - Now text_parts, parts and received are arrays
  119. - Pre-allocate arrays with some reasonable defaults
  120. - Use arrays instead of lists in plugins and checks
  121. - Remove unused fields from task structure
  122. - Rework mime_foreach callback function
  123. - Remove deprecated scan_milliseconds field
  124. * Add ip_score plugin support (not enabled by default):
  125. - Can check for asn/country and network using DNS lookups
  126. - Can store and load reputation from redis server
  127. * Improve PARTS_DIFFER rule to count merely different words
  128. * New HTML parser:
  129. - Parses HTML parts using a set of state machines
  130. - Extracts useful data and exports it to lua functions:
  131. + Styles
  132. + Images
  133. + URLs
  134. + Colors
  135. + Structure elements
  136. - Added HTML rules for some checks
  137. * New version of LUA DNS API
  138. * Table versions of many functions in LUA API
  139. * Improve rspamc client:
  140. - Print execution time
  141. - Allow executing of external commands and passing output to them
  142. - Allow mime output mode when rspamc alters message according to rspamd
  143. checks and send it to an external command or stdout
  144. * Allow scanning of local files using HTTP requests
  145. * Rework configuration system:
  146. - Rules are now moved from the $CONFDIR to $RULESDIR to avoid ambiguity
  147. - All modules configurations are now split in $CONFDIR/modules.d/* to
  148. simplify upgrades
  149. - Move hfilter to plugins
  150. - Allow plugins and rules to define default scores to simplify metrics
  151. setup
  152. - Include overrides for all modules to honor local/automatic parameters
  153. - Tune scores for many modules
  154. * Rework and enable DMARC plugin
  155. * Add whitelist plugin for SPF/DKIM/DMARC based whitelisting
  156. * Add some common domains to whitelists shipped with rspamd
  157. * Rework logging:
  158. - Now each log entry supports module name and a `tag`. Tag is used to
  159. identify unique objects (such as tasks) when checking log files
  160. - It is possible to turn on debugging for the specific modules
  161. - Systemd logging is fixed
  162. * Improve spamassassin plugin.
  163. - Now headers are matched more like SA
  164. - Improve support of Message-ID
  165. - Add support of ToCc header type
  166. - Fix :addr and :name in headers regexps
  167. * Resurrect rrd support code
  168. * Save controller stats between restarts
  169. * Fixed tonns of bugs
  170. * Added tonns of minor improvements and features
  171. * Added more unit tests
  172. * Create functional tests framework
  173. * Added documentation for missing modules
  174. * Added rpm/deb repositories and scripts
  175. * Updated WebUI and libucl externals
  176. 0.9.10:
  177. * Do not dereference null pointer on learning.
  178. * Fix some extreme cases in BAYES.
  179. * Add a workaround to avoid bad HTML messages breaking.
  180. * Build with -O2 flags by default.
  181. * Add constraints to limit DNS requests count per task.
  182. * Add workaround for SURBL DNS flood.
  183. * Set error if rspamd cannot learn anything.
  184. 0.9.9:
  185. * Don't use RWL_SPAMHAUS_WL (unknown result) for whitelisting (by @fatalbanana)
  186. * Import updated public suffix list (by @fatalbanana)
  187. * Remove debug message
  188. * Fix settings (by @fatalbanana)
  189. * Remove duplicated symbol registration
  190. * Use WAL for fuzzy storage
  191. * RBL fixes (by @fatalbanana):
  192. - silence errors;
  193. - yield unknown results from RBLs;
  194. - fix scoring for DNSWL;
  195. - fix use of RBL name as symbol;
  196. - ignore RBL names that would not be yielded;
  197. * Support captures in regular expressions
  198. * Add captures support to lua_regexp
  199. * Support dist on FreeBSD and Darwin
  200. * Add RCVD_IN_DNSWL_NONE as whitelisting exclusion (by @fatalbanana)
  201. * Multiple fixes to URL detection:
  202. - support port definition;
  203. - fix query and path recognition;
  204. - fix parsing of multiple slashes in URL;
  205. - fix parsing query just after port;
  206. - fix path field in `url:to_table` method;
  207. - improve support of IP based URLs.
  208. * Set ignore_whitelists = true for RECEIVED_SPAMHAUS_XBL (by @fatalbanana)
  209. * Add GTUBE support
  210. * Ignore User header in SA mode
  211. 0.9.8:
  212. * Fix critical bug in bayes classifier (#305)
  213. * Fix critical bug in RBL module (by @fatalbanana)
  214. * Fix and rework settings plugin.
  215. * Fix get_all_opts for a case of non-iterable options.
  216. * Use tld for redirector's matching.
  217. 0.9.7:
  218. * Add whitelist_exception setting to RBL module (by @fatalbanana)
  219. * Don't use RWL_MAILSPIKE_POSSIBLE or DNSWL_BLOCKED for whitelisting (by
  220. @fatalbanana)
  221. * Fix extreme cases in bayes classifier.
  222. * Fix parsing of urls with '?' at the end of hostname.
  223. * Update interface.
  224. * Fix number of issues with webui interaction.
  225. * Fix saving maps.
  226. * Allow user@ and @domain matches in multimap.
  227. * Fix issues with bounces From processing.
  228. * Fix abs/fabs misuse.
  229. * Fix builds on suse and arch linux distributions.
  230. 0.9.6:
  231. * Fix memory leak if mime cannot be parsed.
  232. * Fix dkim cache expiration.
  233. * Fix issues with redirector HTTP response.
  234. * Fix abnormal connection closing with certains messages with a high score
  235. (issue #296)
  236. * Fix redirector installation.
  237. * Use specific POE loop for some systems.
  238. * Fix number of issues in URL redirector.
  239. * Fix selecting URLs for sending to redirector.
  240. 0.9.5:
  241. * Avoid double free when extending HTTP message.
  242. * Fix double free if multiple classifiers are defined.
  243. * Fix misprint in spamassassin plugin.
  244. * Fix cpuid invocation on i386.
  245. * Fix ownership issues for zero-copy decode.
  246. * Allow __len metamethod on rspamd{text}.
  247. * Add base64 decoding lua utility.
  248. * Fix build on FreeBSD
  249. * Skip spaces at the beginning of mime messages.
  250. * DBL_ABUSE_REDIR should not have significant weight.
  251. * Allow to split by lua_regexp rspamd{text} objects.
  252. * Allow to specify custom stop pattern for lua_tcp.
  253. 0.9.4:
  254. * Fix critical bugs in tokenization algorithm
  255. * Write unit tests for tokenization
  256. * Add documentation for lua_tcp
  257. * Switch off legacy tokenization by default.
  258. * Fix critical bugs in words normalization
  259. * Add lua bindings to tokenizer.
  260. * Implement storing of HTTP headers inside task
  261. * Add lua API to accerss HTTP headers data
  262. * Implemented base64 encoding suitable for MIME
  263. * Use caseless hash and equal functions for HTTP request headers.
  264. * Improve debian architectures support (by @dottedmag)
  265. 0.9.3:
  266. * Revert incorrect regexp change that broke the default rules
  267. * Fix lua_tcp module
  268. 0.9.2:
  269. * Fix error on spawning unique workers.
  270. * Add preliminary version of generic LUA TCP requests API.
  271. * Use lua 5.1 if luajit is not available (Arm64, PowerPC, s390x etc)
  272. * Fix fuzzy mime strings with only type.
  273. * Improve thunderbird sanity checks.
  274. * Fix critical bug on matching regular expressions.
  275. * Make hiredis optional dependency.
  276. * Fix multiple bugs in daemon reloading
  277. 0.9.1:
  278. * Restore utf8 validation for regular expressions to avoid crashes
  279. * Fix symbols displaying in the interface
  280. * Add symbol groups to the interface
  281. * Fix maps ID parsing in the controller
  282. * Add multimap and regexp modules documentation
  283. * Backport fixes from libucl
  284. * Fix debian package (by @dottedmag)
  285. * Rework XXH32 invocations
  286. 0.9.0:
  287. * Add support of the fast and secure protocol level encryption:
  288. - curve25519 is used for key exchange;
  289. - chacha20/poly1305 cryptobox construction for bulk encryption;
  290. - zero latency overhead;
  291. - encrypting and balancing HTTP proxy worker
  292. * Rework expressions and create new expressions library:
  293. - aggressive optimizations based on the abstract syntax tree;
  294. - abstract expressions support (regular expressions, functions, lua modules
  295. composites and so on)
  296. - New comparision and '+' operators support
  297. - New greedy algorithm to minimize execution time of expressions and
  298. all symbols
  299. - Dynamic expressions benchmark and reoptimizations
  300. * Many improvements to the LUA API:
  301. - reworked logger module allowing to do pretty print of the most of lua
  302. types (including tables and userdata classes)
  303. - reworked lua redis and lua HTTP to support more features
  304. - added opaque type for passing large text chunks without copying
  305. - new regexp module with many auxiliary functions (e.g. `re:split`)
  306. * LuaJIT is now the default requirement for rspamd allowing to speed up lua
  307. execution by a large margin (however, plain lua is still supported)
  308. * New plugins:
  309. - spamassassin rules plugin that allows to load and re-use the most of
  310. SA rules natively
  311. - DMARC plugin that evaluates SPF and DKIM policies to the domain policies
  312. - many old plugins has been reworked to implement new features and improve
  313. stability
  314. * New aho-corasic trie implementation from @mischasan that allows to load and
  315. use hundreds of thousands of patterns with no influence on load
  316. * Support of PCRE JIT and PCRE JIT fast path modes that significantly improves
  317. the performance of regular expressions if supported by PCRE
  318. * New URLs parser and extractor:
  319. - removed legacy code that was useless for url finding
  320. - reworked algorithms of URL parsing for more precise and accurate results
  321. - added top-level-domains tree from http://publicsuffix.org
  322. - improved emails parsing
  323. - removed many phishing false positives due to TLD tree check
  324. * New statistics infrastructure:
  325. - created a separate layer of statistic library
  326. - improved OSB-Bayes by re-weighting tokens according to the original
  327. academic paper and `crm114` implementation, which reduced false positives
  328. rate significantly
  329. - created learn cache to avoid double learning of statistics and providing
  330. an efficient way to re-learn class for a message
  331. - created abstract layers for different statistics backends
  332. - implemented new tokenization algorithms with fast or secure (siphash)
  333. hashes to generate statistics features
  334. * Reworked utf8 tokenization that previously corrupted all UTF8 words (minor
  335. incompatibility with old fuzzy hashes with utf-8 symbols)
  336. * SPF module has been completely rewritten to support complex cases of
  337. `include` and `redirect` within SPF records
  338. * DKIM module now supports multiple signatures
  339. * Controller passwords can now be stored encrypted by `PBKDF2-HMAC` in the
  340. configuration file
  341. * Many hand-written HTTP clients has been replaced with the common rspamd
  342. http module
  343. * New test framework:
  344. - import lua `telescope` test framework
  345. - add unit tests for many rspamd modules and routines
  346. - create a unit test for each possible bug found
  347. - use luajit ffi for testing C code
  348. - added preliminary support of functional testing by creating tasks from lua
  349. * Randomize hash seed to avoid certain hash tables vulnerabilities
  350. * Documentation improvements:
  351. - added documentation for the vast majority of rspamd modules
  352. - added documentation for rspamd protocol
  353. - added documentation for the most of rspamd LUA extensions
  354. * Fixed tonns of bugs and memory leaks
  355. * Added tonns of minor features
  356. 0.8.3:
  357. * Various critical fixes in distribution (by @dottedmag and @fatalbanana)
  358. * Fixed bugs in url detector to parse certain patterns
  359. * Add default host and helo for a client
  360. * Some sanity checks for tokenizer and classifier
  361. * Reiterate on systemd support
  362. * Fix missing symbol registration
  363. * Add support of spamc compatible output
  364. * Filter double-dots in rbl.lua validate_dns (by @fatalbanana)
  365. * Update ucl submodule due to critical bugfix
  366. 0.8.2:
  367. * Create fuzzy db if it does not exist
  368. * Fix: Centos init script: configtest() (by @AlexeySa)
  369. * Enable one_shot for RECEIVED_SPAMHAUS_XBL - Fixes #102 (by @fatalbanana)
  370. * Update Exim patch (by @fatalbanana)
  371. * Fix processing of unix sockets.
  372. * Allow applying settings to authenticated users (by @fatalbanana)
  373. * Make settings priorities work as documented (by @fatalbanana)
  374. * Fix race condition in symbols planner
  375. * Add DNSWL_BLOCKED symbol (by @fatalbanana)
  376. * Make Exim pass usernames to rspamd (by @fatalbanana)
  377. * Update RBL module (by @fatalbanana):
  378. - fix indentation;
  379. - collapse loops;
  380. - avoid calling for un-needed information;
  381. - allow disabling RBLs for authenticated users
  382. * once_received.lua: Fix indentation & add exclusion for authenticated users (by @fatalbanana)
  383. * hfilter.lua: Add exclusion for authenticated users (by @AlexeySa)
  384. * Updates to hfilter rules (by @AlexeySa)
  385. * Set empty <> user or addr for msgs without FROM (by @eneq123)
  386. * Fix: attempt to index field '?' (a nil value) (by @eneq123)
  387. * Fix: if not exist Date-header (by @AlexeySa)
  388. * Add task:get_content() method.
  389. * rbl.lua: Ignore private IP space (by @fatalbanana)
  390. * Allow to check radix maps from lua by rspamd{ip}
  391. * Make local exclusions configurable per-RBL (by @fatalbanana)
  392. * Add rspamd_config:radix_from_config() (by @fatalbanana)
  393. * Support emails dnsbl in rbl (by @fatalbanana)
  394. * Complete rework of url extraction logic
  395. * Allow customizations for unix sockets. (fixes #182)
  396. * Set lua path according to rspamd settings.
  397. * Import lua-functional for plugins stuff.
  398. * Completely rewrite multimap plugin in functional style.
  399. * Fix FORGED_MUA_THUNDERBIRD_MSGID (fixes #186)
  400. * Check IPv6 addresses at dnswl.org and Spamhaus whitelist (by @fatalbanana)
  401. * Add lowercase utility for utf8 strings.
  402. * Various fixes to build system
  403. * Updated debian configuration infrastructure (by @dottedmag)
  404. 0.8.1:
  405. * Add sqlite and perl as dependencies for RPM/Debian packages (by @fatalbanana)
  406. * Remove whitelist.lua from RPM file list (by @fatalbanana)
  407. * Make Exim pass hostnames to rspamd (by @fatalbanana)
  408. * Fix building on Fedora (by @fatalbanana)
  409. * Add toggle for disabling installation of systemd units on Linux (by @fatalbanana)
  410. * Fix double format rounding that caused output corruption (reported by @fatalbanana)
  411. * Revert broken change for destructors ordering that led to memory corruption
  412. * Do not reset symbols case of settings if parsed from lua (reported by @andrejzverev)
  413. * Fix build on SunOS (by @wiedi)
  414. * Fix multiple crashes on broken DKIM DNS records
  415. * Fix critical issue with composites weights removing
  416. * Fix memory corruption in composites processing code
  417. * Ignore non-SPF TXT records when parsing SPF includes
  418. 0.8.0:
  419. * New fuzzy check logic:
  420. - use shingles algorithm for fuzzy matching
  421. - use blake2 instead of md5 for larger output space
  422. - combine fuzzy and strict matching
  423. - allow to organize private storages by means of keys
  424. - preserve compatibility with previous versions
  425. * New fuzzy storage:
  426. - use sqlite instead of own memory based hash tables
  427. - rework commands interface
  428. - add conversion from the old format
  429. - add fuzzy match by shignles
  430. - support old rspamd versions
  431. * Add lemmatizing for words used in fuzzy hashes that allows to improve match
  432. quality by using of the first forms of all words
  433. * Rework language detection
  434. * Fix several critical bugs, memory leaks and deadlocks:
  435. - memory leak in HTML nodes parsing
  436. - deadlock in logger code
  437. - deadlock in signals processing
  438. - crashes in fuzzy_storage
  439. - crashes in tokenizers if the input was empty
  440. * Import new libucl with several bugfixes and improvements
  441. * Support listening on ipv6 addresses only
  442. * Fix macro expansion in SPF module
  443. * Several bugfixes in DKIM module
  444. * Add load headers support for mime parts to the lua API
  445. * Add documentation for:
  446. - workers in general
  447. - fuzzy_storage worker
  448. - fuzzy_check plugin
  449. - mimepart and textpart lua API modules
  450. 0.7.6:
  451. * Apply boundary fix for dkim simple canonization
  452. * Fix ping command
  453. * Return nil if header was not found in lua_task
  454. * Fix hang in upstreams revive logic
  455. * Decode entitles when normalizing HTML parts
  456. * Fix logic of finding URLs in HTML parts
  457. * Do not include \0 into length of text when performing conversion to utf8
  458. * Fix raw vs parsed reperesentations
  459. Raw parts are now:
  460. - decoded b64/qp, but *NOT* converted to utf-8
  461. Processed parts are now:
  462. - converted to UTF-8
  463. - normalized if needed (e.g. HTML tags are stripped)
  464. * Rework DKIM canonization to line based
  465. * Fix fuzzy hashes addding
  466. * Use more specific hash function for fuzzy
  467. * Fix leaking of iconv descriptors
  468. * Fix PTR resolving in lua resolver
  469. * Rework spf module.
  470. - Copy data to memory pool as cached record might be destroyed causing
  471. freed memory being passed to the protocol output (use after free)
  472. - Allow SPF_NEUTRAL policy to be handled separately
  473. - Add R_SPF_NEUTRAL to the default config
  474. * Rework `register_symbols` function
  475. * Allow to disable components of hfilter
  476. 0.7.5:
  477. * Fix owner when creating folder /run/rspamd (by @sfirmery)
  478. * Fix IP validity checks
  479. * Decode URLs obtained from HTML tags
  480. * Fix crash with unweighted upstreams
  481. * Stop processing headers in parts
  482. * Set sockaddr.sa_family properly when connectig to upstreams
  483. * Fix reload issues in surbl and fuzzy_check (reported by @citrin)
  484. * Fix timeouts in redirector
  485. * Improve lua errors reporting
  486. * Fix lua closures processing in libucl
  487. * Rework calling of lua functions from regexp module
  488. * Choose raw regexp for raw headers
  489. * Rework conversion to utf since glib one is broken
  490. * Ignore SGML style tags in html
  491. * Fix old bug with non-capturing https urls
  492. * Fix memory corruption on fuzzy reload (reported by @citrin)
  493. * Fix percents display in rspamc
  494. * Fix buffer update for DKIM
  495. * Do not validate utf for raw headers
  496. 0.7.4:
  497. * Fix build under *BSD
  498. * Detect HAN unicode script
  499. * Implement language detection heuristic for text parts
  500. * Fix time output in history
  501. * Improve piechart coloring
  502. * Fix \r\n conversion in DKIM module (reported by @citrin)
  503. * Try to detect systems with no IPv6 support
  504. * Fix multiple/single values in use settings (reported by @citrin)
  505. * Rework IP addresses in upstreams:
  506. - Select ipv4/unix addresses if they exist and use ipv6 for ipv6 only
  507. upstreams (since the support of ipv6 is poor in many OSes and
  508. environments)
  509. - Free IP list on upstream destruction
  510. - Add test cases for addresses selection
  511. - Allow adding of free form IP addresses to upstreams
  512. * Fix endiannes in lua_radix search (reported by @citrin)
  513. * Soft shutdown should also set wanna_die flag (reported by @citrin)
  514. * Stop use-after-free in event loop termination
  515. * Fix processing of very short messages in DKIM (reported by @citrin)
  516. * Detect systems without shared mutexes
  517. * Fix issues with PTR and MX elements in SPF parser (reported by @citrin)
  518. 0.7.3:
  519. * New upstreams code:
  520. - simplify upstreams API;
  521. - unify strings parsing in upstreams definition;
  522. - add configuration options for the upstreams;
  523. - for failed upstreams re-resolve their addresses;
  524. - use all resolved addresses for an upstream (round-robin);
  525. - implement stable hashing and use it by default for upstreams;
  526. - add unit test for upstreams module.
  527. * Rework signals processing in all rspamd workers:
  528. - signals are now processed in the event loop;
  529. - implement the most common signal handlers for all workers;
  530. - add callbacks for workers specific signal handlers
  531. * Fix critical issue with fuzzy storage:
  532. Fuzzy stroage could not save any hashes on termination due to bugged
  533. signals handling
  534. * Fix roll history IP storage
  535. * Rework ipv4/ipv6 handling in parsing addresses:
  536. - turn off support of IPV6_V6ONLY socket option;
  537. - create ipv6 socket prior to ipv4 one to handle systems with v6/v4
  538. sockets enabled (Linux)
  539. * Remove CBL as it's wholly included in Spamhaus XBL (by @fatalbanana)
  540. * Remove nszones.com fake RBL (by @citrin)
  541. * Fix upstreams interaction for fuzzy_check
  542. * Verify spf PTR records (reported by @citrin)
  543. * Fix spf MX records parsing
  544. * Add compatibility for old libevent (by @yellowman)
  545. * Sync bugfixes from libucl
  546. 0.7.2:
  547. * Convert all maps to the compressed radix trie
  548. * Allow IPv6 addresses in IP maps
  549. * Remove dynamic items support from symbols cache
  550. * Allow hex encoded output of strings
  551. * Fix bug with control connections count
  552. * Process fuzzy weight correctly (reported by @fatalbanana)
  553. * Remove extra reference retain of http connection on error
  554. * Remove deprecated options from the default config
  555. * Add `one_shot` attr to metric's symbols
  556. * Doc: add documentation for metrics
  557. * Add Upstart job to debian packaging (by @CameronNemo)
  558. * Config: improve SURBL symbols descriptions (by @citrin)
  559. * Config: reflect SURBL changes (by @citrin):
  560. - Outblaze removed, malware moved to separate list:
  561. http://www.surbl.org/news/internal/MW-malware-sublist-added-to-multi
  562. * Fix C modules initialization on restart
  563. * Treat single IP as a single IP in radix lists (reported by @citrin)
  564. * Do not touch file and core limits if not asked explicitly (reported by @citrin)
  565. * Improve logging for fuzzy errors
  566. * Block SIGPIPE for HTTP writing
  567. * Doc: update manual pages
  568. * Fix HTTP connection termination
  569. * Reduce default number of parallel requests to 8
  570. * Sync with libucl include features
  571. 0.7.1:
  572. * Fix typo in stat output.
  573. * Fix issues with includes crossing with the system includes
  574. * Restore testing framework
  575. * Add radix trie test suite
  576. * Implement new path-compressed radix trie.
  577. - The performance benefit over the old algorithm is about 1.5 times.
  578. - Memory usage is significantly lower as well.
  579. - Now radix trie can accept any IPv4/IPv6 values
  580. * Various improvements to the memory pools code
  581. * Fix writing reply to a client when no filters are defined
  582. * Write base32 encoded fuzzy
  583. * Fix 'soft reject' action
  584. * Fix rspamd reload and modules reconfiguration
  585. * Fix subject rewriting for the default subject
  586. * Fix states for processing task and pre-filters
  587. * Fix issues with connection closing
  588. * Fix crashes in rdns
  589. * Fix ratelimit pre-filter
  590. * Update exim patch.
  591. - Update to the recent exim version
  592. - Strip extra leading src/ from the patch
  593. - Remove sendfile since it was broken
  594. - Fix rspamd spam report for exim
  595. * Improve documentation
  596. 0.7.0:
  597. * Use HTTP protocol for all operatiosn
  598. * Webui worker is now removed and controller works as webui
  599. * Allow to serve static files via controller by option `static_dir`
  600. * Rspamd interface is now a part of rspamd
  601. * Rspamc client has been rewritten to use HTTP and non-blocking mode
  602. allowing to start multiple operations simultaneously (see `-n` option)
  603. * Lua API was completely reworked to satisfy modern standards of LUA:
  604. * Module `lua-message` was removed
  605. * Reduced number of superglobals registered by rspamd
  606. * Many functions has been redesigned
  607. * Symbols registration is now more convenient
  608. * Users settings has been rewritten as lua plugin
  609. * Reworked headers system as gmime's based one misses many headers and is
  610. very slow to get headers values
  611. * Reorganized code and removed embedded jannsson by using UCL for all json
  612. parsing
  613. * Migrated to `librdns` for DNS resolving that improves concurrency for
  614. DNS requests significantly
  615. * Fixed tonns of bugs in MIME processing
  616. * Improved metrcis and default symbol's weights
  617. * Added new RBL's
  618. * Fixed a number of issues in the modules
  619. * Removed several memory leaks found
  620. * Fix unicode processing
  621. * Fix fuzzy checking for unicode parts
  622. * Significantly improve documentation and especially LUA API docs
  623. * See migration notes at https://rspamd.com/doc/migration.html
  624. 0.6.8:
  625. * Controller now listen for localhost and not for 127.0.0.1 by default
  626. * Allow FCrDNS-style RBL lookups (by @fatalbanana)
  627. * Reduce threshold for parts_differ function.
  628. * Fix hostname lookup for rdns rbl (by @AlexeySa)
  629. * Fix HFILTER_URL_ONELINE to reduce false positive rate.
  630. * Fix whitelist module.
  631. * Allow override system predefined settings without touching system ones
  632. by .try_include macro (by @andrejzverev)
  633. * Check for [ip.address]-style HELO and suppress lookups. (by
  634. @fatalbanana)
  635. * Optimize hfilter (by @AlexeySa)
  636. * Fix issue with random numbers generator in dns.
  637. * Use more clever time values to setup entropy.
  638. * Synced with the recent libucl.
  639. 0.6.7:
  640. * Use ChaCha20 for DNS generator (more secure DNS id)
  641. * Unknown symbols now has zero weight and not 1.0
  642. * Fix fuzzy hashes expire time
  643. * Fix critical issue in statfiles on FreeBSD 9 (and some other platforms)
  644. * Add .include_map macro to ucl parser
  645. * Update libucl
  646. * Fix headers end detection for DKIM module
  647. * Fix a bug in received headers parser
  648. * Validate IP addresses before pushing them to lua
  649. * Start new documentation project
  650. * Fixed tonns of other minor bugs
  651. * Start to prepare for 0.7 with HTTP protocol and new settings
  652. 0.6.6:
  653. * Removed issue with BUFSIZ limitation in the controller output
  654. * Simplify logging symbols escaping
  655. * Adjusted weights for several rules
  656. * Improve spamhaus rbl support
  657. * Removed PBL for received headers checks
  658. * Added hfilter module that performs various HELO and IP checks.
  659. * Rspamd can now be reloaded by HUP signal
  660. * Fuzzy storage should expire hashes properly
  661. * Build system has been reworked for better supportof pkg-config
  662. * Various minor bugfixes
  663. 0.6.5:
  664. * Fixed critical bug in DNS resolver, introduced in 0.6.4
  665. * Improved multimap and rbl plugins to skip
  666. * Add dns_sockets option for tuning sockets per server in DNS resolver
  667. * Improved packages for rspamd
  668. 0.6.4:
  669. * Added io channels for DNS request to balance load and reduce id
  670. collisions chance
  671. * Fixed a bug in SPF filter that may cause core dump in specific
  672. circumstances
  673. * FIxed default config for rbl module
  674. * It is possible to get a list of rspamc commands with their descriptions
  675. * Added SORBS bl to the default config
  676. * 2tld file for surbl module has been significantly extended
  677. * Perl modules has been removed from the code.
  678. * Fixed an issue in libucl when parsing macros
  679. 0.6.3:
  680. * Fixed issues with DNS:
  681. - labels decompression algorithm was fixed;
  682. - added resolve_mx to lua API;
  683. - fixed modules that use DNS.
  684. * Lua modules once_received and emails reworked for new resolver API and UCL.
  685. * Debian package was polished.
  686. * Fixed a bug in fuzzy_check module that prevents correct processing messages
  687. without valid parts.
  688. 0.6.2:
  689. * Fuzzy check module has been reworked:
  690. - now fuzzy_check operates with a group of rules, that define which
  691. servers sre to be checked;
  692. - it is possible to specify read_only groups to avoid learning errors;
  693. - turn fuzzy_check to one_shot mode permanently;
  694. - fuzzy_check module configuration is now incompatible with the previous
  695. versions.
  696. * Imported bugfixes from libucl.
  697. * Fixed whitelist plugin.
  698. * Fixed statfiles resizing.
  699. * Improved logging initialization order.
  700. * Fixed race condition in the controller worker.
  701. 0.6.1:
  702. * Critical bugfixes:
  703. - fixed build system;
  704. - fixed in_class setting in bayes learning;
  705. 0.6.0:
  706. * Use UCL instead xml for configuration (https://github.com/vstakhov/libucl)
  707. * Fix statistics module normalization
  708. * Rework the many modules for the new configuration:
  709. - surbl has incompatible configuration;
  710. - fuzzy_check has incompatible configuration;
  711. - multimap has now new configuration;
  712. - received_rbl is removed and replaced by rbl module.
  713. * Removed deprecated options:
  714. - statfile_pool_size;
  715. - action and required/reject score for a metric.
  716. * Simplify build system and unify configuration for all platforms.
  717. * Improved URL detector (reduced false positive rate).
  718. * Lua 5.2 is now the default and fully supported version.
  719. * Tons of bugfixes and minor improvements.
  720. 0.5.6:
  721. * Fix bug with counters incrementing in rolling history
  722. * Detect expl and exp2l as some systems do not have it
  723. * Support input streams without Content-Length
  724. * Implement counters output via rspamc and controller interface
  725. * Fix bug with udp sockets in fuzzy storage
  726. 0.5.5:
  727. * New bayes normalizator based on inverse chi-square function
  728. * Various fixes to fuzzy storage
  729. * Allow update fuzzy storage only from specific IP addresses
  730. * Better support of IPv6 and address selection algorithms
  731. * Add CentOS spec file
  732. 0.5.4:
  733. * Fixed issues with diff algorithm
  734. * Added support of RRD statistics
  735. * Add webui worker for interface interaction
  736. * Fix a lot of issues with dynamic conf
  737. * Fix critical memory leak in settings code
  738. * Improve stability of the system
  739. 0.5.3:
  740. * Added dynamic options
  741. * Added advanced metaclassfication
  742. * Added RESTfull API for controller
  743. * Improved hashing algorithms
  744. * Various fixes for rspamc client:
  745. - allow interacting with unix sockets
  746. - librspamdclient major cleanup
  747. - bayes is now default classifier
  748. 0.5.2:
  749. * Added lua bindings for:
  750. - basic mime parts, that allows checkign attachements for example;
  751. - DNS resolver;
  752. * Existing lua bindings now works without task object allowing to use them
  753. in custom code.
  754. * Threads system was reworked to avoid global lua interpreter lock.
  755. * DKIM module now converts all line endings to CRLF how opendkim does.
  756. * URL detector is now more accurate for text parts.
  757. * Several critical bugs and memory leaks were fixed.
  758. 0.5.1:
  759. * Added lua worker type to handle network connections in lua.
  760. * Added lua bindings for async_session, IO dispatcher, memory_pool, and
  761. worker.
  762. * Composites can now uses other composites in expressions.
  763. * Fixes for debian package and for FreeBSD >= 9.1
  764. * Add support of gmime-2.6 if gmime-2.4 is not found.
  765. * Improve url detection and phishing detection.
  766. * Add lua mime_part library to get an access to all message part
  767. attributes (like filename, length, type).
  768. 0.5.0:
  769. * Added SMTP lightweight balancing proxy with XCLIENT support.
  770. * Added lua bindings for upstreams objects and API.
  771. * New pre-filters are implemented to support initial checking for messages.
  772. * Added ratelimit plugin that uses redis protocol to store data.
  773. * Added ipv6 support to spf and some other modules.
  774. * Unbreak spf plugin.
  775. * Allow options with the same name be threated as list.
  776. * DKIM plugin an parsing code was added.
  777. * Separate build system to put logic in several shared libraries.
  778. * Many bugfixes.
  779. 0.3.2:
  780. * Add error handling for regexps
  781. * Fix quit command in controller interface
  782. * Write symbols weights to rspamc output
  783. * Improve logic of selecting rspamc version
  784. * Do not try to parse broken DNS replies
  785. * Add 'raw' flag to FROM_EXCESS_BASE64 rule (requested by citrin)
  786. * Output message id in rspamc reply
  787. * Fix inserting composite symbol
  788. * Fix output of log line
  789. * Document composites
  790. * Add logging for fuzzy checks
  791. * Add logging for learning
  792. * Improve logic of learning messages - do not learn more than specific threshold
  793. * Fix inserting results for symbols that were incorrectly (for example more than 1 time) defined in config file
  794. * Do not output control characters if output is not terminal
  795. * Fix some logic errors in learning
  796. * Consider lua plugins errors as fatal configuration errors
  797. * Fix wirting message id during fuzzy_add command
  798. * Display weight of symbols correctly
  799. * Fixes to winnow learning
  800. * One more try to improve accuracy of winnow algorithm
  801. * Add bayesian classifier (initial version)
  802. * Remove normalizer as it is winnow specific thing, so all statistic algorithms now returns value from 0 to 1
  803. * Some fixes to fuzzy hashes expiration:
  804. * Fix assertion while look up value in NULL hash (found by cirtin)
  805. * Fix normalization for systems that have not tanhl function
  806. * Ignore rfc822 group addresses
  807. * Move images library to core rspamd
  808. * Add lua api to access images properties
  809. * Add post filters to lua API - filters that would be called after all message's processing
  810. * Add ability to check for specified symbol in task results from lua
  811. * Add ability to check for metric's results from lua
  812. * Add ability to learn specified statfile form lua
  813. * Add ability to extract filename and size of images from lua
  814. * Fix assertion while extracting internet address
  815. * Fix races in fuzzy storage
  816. * Make spf parser case insensitive
  817. * Add ability to check hashes of selected mime types
  818. * Add ability to set minimum size in bytes for mime types
  819. * Add ability to set minimum dimensions for images
  820. * Assume all text/* content types as text/plain
  821. * Fix getting data wrapper for gmime24
  822. * Many fixes to statfile syncronization system
  823. * Fixed statfile pool initialization and synchronization with disk
  824. * Prepare 0.3.2
  825. * Fix Mail::Rspamd::Config for new rspamd features
  826. * Use Mail::Rspamd::Config in rspamc client
  827. * Write user's name to rspamd log
  828. * Prepare rspamd build infrastructure for creating rpm and deb packages
  829. * Fix depends
  830. * Add start script for linux systems
  831. * Fix shared usage of statfiles
  832. * Add invalidation of statfiles in case of learning, so now statfiles
  833. * This should fix shared usage of statfile pool by several processes
  834. * Fix misprint (reported by az)
  835. * Fix stupid error when all checks can be done in a single pass
  836. * New trie based url scanner (based on libcamel)
  837. * Small fixes to rspamd perl client
  838. * Write fuzzy hashes info to log
  839. * Add trie interface to lua api
  840. * Explain sample config and cleanup it
  841. 0.3.1:
  842. * Add modules documentation
  843. * Continue implementing smtp proxy
  844. * Implement new learning system, now rspamd should be much more intelligent while learning messages
  845. * Convert statistic sums to use long double for counters
  846. * Use hyperbolic tangent for internal normalizer
  847. * In classify normalize result after comparing, not before
  848. * New symbols sorter
  849. * Fix strict aliasing while compiling with optimization
  850. * Fix tanhl detection for platforms that have not implementation of it
  851. * Remove several compile warnings
  852. * Add experimental support of dynamic rules to regexp module
  853. * Document views configuration
  854. * Several fixes to documentation
  855. * Add more logic for dynamic rules
  856. * Add documentation for dynamic rules
  857. * Add ability to make negations in networks in dynamic rules
  858. * Clean up cache items correctly
  859. * Implement basic SMTP dialog:
  860. * Implement interaction with smtp upstream (with support of XCLIENT)
  861. * Check messages received via smtp proxy
  862. * Add support for sendfile in io dispatcher
  863. * Fix issues with compatibility of worker_task and smtp proxy
  864. * Proxy DATA command
  865. * Fix SMTP
  866. * Change metric logic
  867. * Completely remove lex/yacc readers for config
  868. * Make common sense of metric/action and symbols
  869. * Sync changes with all plugins
  870. * Incorrectly removed in previous commit
  871. * Fix misprint (by Andrej Zverev)
  872. * announce the "password" keyword in usage list
  873. * Implement initial version of greylisting triplets storage
  874. * Fix issues with smtp worker
  875. * Fix QUIT command in SMTP worker
  876. * Some fixes about new metrics system (may be incomplete)
  877. * Get weights of symbol from default metric for symbols cache
  878. * Fix setting task->from/task->rctp in smtp client
  879. * Copy from and rcpt correctly
  880. * Some performance improvements to IO dispatcher (do not drain the whole buffer after a single line readed)
  881. * Fix smtp data input
  882. * Fix misprint
  883. * Add limit of maximum allowed smtp session errors
  884. * New logic of SURBL module:
  885. * Use system mkstemp(3) on systems where it is available as glib implementation
  886. * Try to fix memmove issues in io dispatcher
  887. * Remove debug from SURBL module
  888. * Rewrite buffered input for line policy (again)
  889. * Fix issue with links that are ip addresses in numeric form in surbl
  890. * On Darwin use BSD style sendfile definition
  891. * Reorganize platform specific knobs in CMakeLists
  892. * Use gettimeofday on systems that have not clock_getres
  893. * Use ftime for dns trans id generation on systems without clock_getres
  894. * Darwin sendfile(2) support
  895. * TIMEDB->TIMEB
  896. * More to previous commit
  897. * Pass env from main() arguments instead of platform specific global environ
  898. * Fix compatibility issues
  899. * Fix -lintl detection
  900. * Init some variables to avoid problems
  901. * Remove garbadge (gnome terminal sucks)
  902. * Add more information about why we drop smtp connection
  903. * Fix mkstemp call
  904. * Send to upstream QUIT command at the end of session
  905. * Check return value of each rspamd_dispatcher_write as in case of write errors sessions can be destroyed early
  906. * Fix states in smtp dialog
  907. * Use rspamd_snprintf instead of libc one
  908. * Fix URLS command
  909. * Fix reconfigure process of surbl module
  910. * Fix destroying smtp session (unmap memory and do not delete pool early)
  911. * Delete pool after using its variables
  912. * Delay timer must be registered in async session to correctly handle connection termination
  913. * Register dns requests in session too
  914. * Make session before registering events
  915. * Remove events in handlers
  916. * Add ability to set filters for smtp worker for each smtp stage
  917. * Add very initial version of DNS resolver (many things to be done)
  918. * Announce weights and sync
  919. * Fix few typo
  920. * Understand short names of facility in logging config
  921. * Add ability to make whitelist for spf checks
  922. * Misprint != -> ==
  923. * Handle lua tag in way that it is not required to write additional text:
  924. * Strip all starting whitespace symbols from xml texts
  925. * Fix stupid bug in calculating buffer length while reading file maps
  926. * Add resolv.conf parsing into dns.c
  927. * Fix microseconds<->milliseconds conversions
  928. * Take callback argument in Mail::Rspamd::Client for processing files and directories
  929. * Print results if rspamc is called for a directory
  930. * Fix stupid error with surbl module reconfig (another one, blame me)
  931. * Do not show duplicate urls in url header
  932. * Fix detection of numeric urls (reported by citrin)
  933. * Write real time of message's scan to log (not only virtual)
  934. * Fix chartable module in utf mode
  935. * Fix parsing of some broken urls
  936. * Add ability to test regexp with 'T' flag
  937. * Write more code for DNS resolver:
  938. * Make DNS resolver working
  939. * Many improvements to rspamd test suite: now it CAN be used for testing rspamd functionality
  940. * Write DNS resolver tests
  941. * Fix issues with memory_pool mutexes and with creating of statfiles
  942. * Forgotten in previous commit
  943. * Add support for parsing SPF and SRV records
  944. * Fix PTR parsing
  945. * Add tests
  946. * Make SURBL module to use rspamd dns module
  947. * Several fixes to DNS logic
  948. * Remove evdns and use only rspamd resolver
  949. * Very hard to detect problem with race among error in socket and destroying task while we are writing to socket and go through a hash table
  950. * Fix resolving in smtp module
  951. * Init events before configuring resolver in smtp worker
  952. * Set resolver inside task
  953. * Fix reload signal (reported by citrin)
  954. * Some improvements to redirector
  955. * Call has_forked method to inform POE about fork
  956. * Fix lua DNS code
  957. * Decompress labels in DNS packets more strictly
  958. * Fix some problems with TXT records
  959. * Try to fix removing of DNS events
  960. * Do not insert unparsed RR's into reply
  961. * Calling callbacks may cause destroying session from which we are calling callback so we MUST call callback as the latest action
  962. * Fix check_smtp_data function
  963. * Add ability to make views by recipient
  964. * Add ability to set metric's action from config file
  965. * Fix bug with writing garbadge if message has no urls or no messages
  966. * Fix bug with incorrect behaviour of compare_parts_distance function
  967. * Add ability to assign several actions to one metric
  968. * Report action in rspamc protocol
  969. * Mail::Rspamd::Client and rspamc can now understand Action header too
  970. * Write action to log as well
  971. * Make valgrind happy about comparing symbols
  972. * Add more debug to comparing parts distance function
  973. * Write action even if message has no symbols
  974. * Make improvements to HTML entites decoder: now it replaces entities with common characters and
  975. * Add -d option to force debug output
  976. * Assume 7bit as default transfer encoding
  977. * Do not overwrite lua plugins and configs if they already exists in target directory
  978. * Improve logging
  979. * Write queue id to log
  980. * Remove test messages from cmake
  981. * Reopen log file by USR1 signal
  982. * Add reopenlog method to FreeBSD rc script
  983. * Adopt foreach for cmake 2.6
  984. * Fix to rc script
  985. * Do not try to resolve names with several dots in a row
  986. * Fix surbl request formatting for ip addresses
  987. * Handle cases of broken requests
  988. * Fix problems with parsing compressed names
  989. * Fix TXT records parsing
  990. * Fix expanding spf macros that may fail in rare cases
  991. * Fix another error with early task destroying
  992. * Handle empty from header
  993. * Improve reopenlog command in rc script
  994. * Strip trailing whitespace characters in Mail::Rspamd::Client
  995. * Use ungreedy match to strip trailing whitespaces
  996. * Stupid error in calculation compressed label length
  997. * Some optimizations to client library
  998. * Do not compare empty parts
  999. * Empty and non-empty parts are allways different
  1000. * Save in regexp cache the whole regexp with header name (if exists) and with flags
  1001. * Add rspamd_log variable to lua plugins to access logging functions
  1002. * Each part in rspamd task now can have parent part
  1003. * Check for parts distance only for multipart/alternative subparts
  1004. * Do not check attachements even if they are text (but attached as file)
  1005. * Do not die if write (2) returned ENOSPACE while doing logging, turn on throttling mode instead (1 write try in a second)
  1006. * Add ability to turn on debug for specific symbols
  1007. * Add ability to configure dns timeouts and dns retransmits in config file
  1008. * More debug
  1009. * Fix extracting arguments in lua logger interface
  1010. * Turn off debug_ip during reload if it was disabled by new config
  1011. * Improve lua logging
  1012. * Pre-init symbols cache when rereading config
  1013. * Fix lua representing of invalid ip (nil, not 255.255.255.255)
  1014. * Fix R_TO_SEEMS_AUTO rule (by citrin)
  1015. * Add multimap lua plugin
  1016. * Fix some multimap issues
  1017. * Try to save images hashes to fuzzy storage to stop some annoying spammers
  1018. * Allocate some more bytes for read buffer to avoid incorrect behavoiur
  1019. * Add ability to check dns black lists by multimap module
  1020. * Add multimap documentation
  1021. * Fix labels parsing
  1022. * Another try to save regexps in cache correctly
  1023. * Improve test logs for regexps
  1024. * Fix parsing txt records to avoid reading of uninitialized data
  1025. * Fix error with writing symbols cache file
  1026. * Fix error while working in utf mode when raw regexps was not created properly
  1027. * Do not add extra byte while converting text to utf
  1028. * Add error handling for regexps