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.

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