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 189KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164
  1. 1.7.0: 12 Mar 2018
  2. * [Conf] Add bayes_expiry as explicit module
  3. * [Conf] Adjust names and weights for neural network plugin
  4. * [Conf] Change updates url
  5. * [Conf] Default statistics is stored in Redis now
  6. * [Conf] Disable fann_redis module by default
  7. * [Conf] Fix default elastic configuration
  8. * [Conf] Fix double quote position
  9. * [Conf] Massive config rework for new structure of symbols and scores
  10. * [Conf] Rename Rambler BLs as they are now Rspamd's ones
  11. * [Conf] Use dedicated rspamd.com subdomains
  12. * [Conf] Use more data from rspamd.com fuzzy storage
  13. * [CritFix] Add sanity guards for badly broken HTML
  14. * [CritFix] Another errors path handling fix
  15. * [CritFix] Another portion of tokenization fixes
  16. * [CritFix] Do not send reject messages after set reply
  17. * [CritFix] Fix ARC chain verification
  18. * [CritFix] Fix crash in milter errors handler
  19. * [CritFix] Fix memory leak in spf caching logic
  20. * [CritFix] Fix milter commands pipelining
  21. * [CritFix] Fix newlines detection
  22. * [CritFix] Fix semicolons parsing in the content type
  23. * [CritFix] Plug memory leak in zstd protocol compression
  24. * [Feature] Add ability to match score in force_actions module
  25. * [Feature] Add aes-rng PRF to libottery
  26. * [Feature] Add 'composites' debug module
  27. * [Feature] Add concept of experimental modules
  28. * [Feature] Add DKIM trace symbol
  29. * [Feature] Add EBL to the default config
  30. * [Feature] Add expected ip check for emails plugin
  31. * [Feature] Add framework to manage Redis scripts
  32. * [Feature] Add framing for the new reputation generic plugin
  33. * [Feature] Add function to show plugins stat
  34. * [Feature] Add gzip compression support for clickhouse module
  35. * [Feature] Add gzip compression support for rspamd controller
  36. * [Feature] Add gzip support when sending lua http requests
  37. * [Feature] Add json output for rspamd_stats
  38. * [Feature] Add method to do a synchronous Redis connection
  39. * [Feature] Add method to get all content-type attributes in Lua
  40. * [Feature] Add `-m` flag to configdump to show modules states
  41. * [Feature] Add mime types to extensions map
  42. * [Feature] Add more features to rescore utility
  43. * [Feature] Add more gtube like patterns to test other spam actions
  44. * [Feature] Add more metafunctions, improve logging
  45. * [Feature] Add more text attributes
  46. * [Feature] Add new configwizard command to rspamadm
  47. * [Feature] Add new tooling for stats conversation
  48. * [Feature] Add old groups migration tool
  49. * [Feature] Add plugins state variable
  50. * [Feature] Add preliminary ecdsa keys support in DKIM
  51. * [Feature] Add preliminary support of idempotent symbols
  52. * [Feature] Add Redis server wizard
  53. * [Feature] Add routine to convert old style stats to a new one
  54. * [Feature] Add some sanity checks for actions and controller
  55. * [Feature] Add statistic convertation module to configwizard
  56. * [Feature] Add sugestions logic to mempool allocator
  57. * [Feature] Add support of config transform in Lua
  58. * [Feature] Add timeout to rspamc when doing corpus test
  59. * [Feature] Add tooling to convert bayes schemas
  60. * [Feature] Add torch conditional to configuration
  61. * [Feature] Add torch-decisiontree package
  62. * [Feature] Add torch-optim contrib package
  63. * [Feature] Add TTL autodetection
  64. * [Feature] Add urls reputation to the reputation framework
  65. * [Feature] Allow floating and negative values in expressions limits
  66. * [Feature] Allow multiple CTs in full extensions map
  67. * [Feature] Allow multiple fann rules
  68. * [Feature] Allow randomly select User-Agent from a list
  69. * [Feature] Allow rspamadm commands to export methods in Lua
  70. * [Feature] Allow rule specific min_bytes in fuzzy check
  71. * [Feature] Allow to adjust symbols scores from Lua
  72. * [Feature] Allow to attach stat signature to messages
  73. * [Feature] Allow to change SMTP from via milter headers
  74. * [Feature] Allow to configure monitored
  75. * [Feature] Allow to create directories in Lua API
  76. * [Feature] Allow to disable torch and skip train samples for ANN
  77. * [Feature] Allow to discard messages dynamically
  78. * [Feature] Allow to enable/disable languages from the detector
  79. * [Feature] Allow to generate DKIM keys from rspamadm API
  80. * [Feature] Allow to get CPU flags from Lua
  81. * [Feature] Allow to have high precision timestamps in logs
  82. * [Feature] Allow to insert headers into specific position
  83. * [Feature] Allow to limit redirector requests per task
  84. * [Feature] Allow to load and use dynamic ANNs with torch
  85. * [Feature] Allow to quarantine rejected messages using milter interface
  86. * [Feature] Allow to receive signing keys from mempool vars
  87. * [Feature] Allow to reserve elements in libucl
  88. * [Feature] Allow to reuse signal handlers chains
  89. * [Feature] Allow to set custom mempool variables from settings
  90. * [Feature] Allow to set headers from settings
  91. * [Feature] Allow to set Settings-Id for all connections
  92. * [Feature] Allow to skip real action and add a header instead
  93. * [Feature] Allow to skip specific hashes in fuzzy storage
  94. * [Feature] Allow to spawn asynchronous processes from Lua
  95. * [Feature] Allow to specify number of threads for ANN learning
  96. * [Feature] Allow to use global lua maps in settings
  97. * [Feature] Allow to use postfilters in composites
  98. * [Feature] Allow to verify signatures from HTTP headers in maps
  99. * [Feature] Antivirus: ordered pattern matches
  100. * [Feature] Authentication-Results: support hiding usernames
  101. * [Feature] Automatically create tables in clickhouse
  102. * [Feature] Catch next-to-last bad extension
  103. * [Feature] Check cached maps more frequently
  104. * [Feature] Check groups sanity
  105. * [Feature] Deal with obscured URLs with @ symbols
  106. * [Feature] Enhance task:store_in_file method
  107. * [Feature] Export password encryption routines to Redis
  108. * [Feature] Filter nan and inf when adding scores
  109. * [Feature] Finalize 7zip files support
  110. * [Feature] Further improvements in language detection
  111. * [Feature] Further improvements in language detection algorithm
  112. * [Feature] Generic key name expansion for Redis keys
  113. * [Feature] Hash whitelist for fuzzy_check
  114. * [Feature] Implement bayes signatures storage
  115. * [Feature] Implement buckets for Redis backend
  116. * [Feature] Implement DKIM reputation adjustments
  117. * [Feature] Implement forked workers children monitoring
  118. * [Feature] Implement headers flags in mime parser
  119. * [Feature] Implement l1/l2 regularization against the current weights
  120. * [Feature] Implement manual ANN train mode
  121. * [Feature] Implement per-user ANN support
  122. * [Feature] Implement torch based ANN learning
  123. * [Feature] Implement upstreams logic for clickhouse exporter
  124. * [Feature] Import torch to Rspamd...
  125. * [Feature] Improve allocation policy when interacting with Lua
  126. * [Feature] Improve Lua/C interaction in history_redis
  127. * [Feature] Improve multiple fuzzy results combining
  128. * [Feature] Improve parsing of DKIM keys: parse algorithm
  129. * [Feature] Improve subprocesses termination handle
  130. * [Feature] Improve symbol type parsing in Lua API
  131. * [Feature] Metadata Exporter: e-Mail Alerts: support multiple recipients; alerting senders/recipients/users (#1600)
  132. * [Feature] Milter headers: support adding/removing arbitrary headers from config
  133. * [Feature] More metatokens
  134. * [Feature] Multimap: checking of symbol options
  135. * [Feature] Multimap: template URL filter
  136. * [Feature] New bayes expiry plugin
  137. * [Feature] Periodically save rspamd stats to disk
  138. * [Feature] Preliminary import of the elasticsearch module
  139. * [Feature] Ratelimit: allow full addresses in whitelisted_rcpts
  140. * [Feature] Ratelimit: support fetching limits from Redis
  141. * [Feature] RBL: received: filtering by position & flags
  142. * [Feature] Read global maps for lua
  143. * [Feature] Redis settings: support checking multiple keys
  144. * [Feature] Rework fann plugin to be a normal post-filter
  145. * [Feature] Rework logging configuration for rspamadm case
  146. * [Feature] Rework short hashes generation to avoid FP
  147. * [Feature] Save real ucl types when exporting to Lua
  148. * [Feature] Set TCP_NODELAY for milter sockets
  149. * [Feature] Setup DKIM signing from configwizard
  150. * [Feature] Skip certain symbols from ANN classify
  151. * [Feature] Store plugins state
  152. * [Feature] Support etag for HTTP maps
  153. * [Feature] Support Expires header when using HTTP maps
  154. * [Feature] Support sending given header multiple times in lua_http
  155. * [Feature] Support sha512 in DKIM signatures
  156. * [Feature] Try to detect HTML messages better
  157. * [Feature] Use array instead of queue to reduce memory fragmentation
  158. * [Feature] Use controller port by default when connecting to local IP
  159. * [Feature] Use rdtsc where possible
  160. * [Fix] Actively load skip hashes map in fuzzy storage
  161. * [Fix] Add another workaround to display history properly
  162. * [Fix] Add definition for old glib compatibility method
  163. * [Fix] Add missing rspamadm control options to help
  164. * [Fix] Add workaround for IPv6 in sendmail
  165. * [Fix] Add workaround for system with non-XSI compatible tzset
  166. * [Fix] Allow oversigning in DKIM signatures
  167. * [Fix] Allow to check negative scores in force_actions
  168. * [Fix] Allow to have negative actions limits
  169. * [Fix] Allow to set any layers number for fann rules
  170. * [Fix] Another fix for rdtcs
  171. * [Fix] Another fix to lua xmlrpc
  172. * [Fix] Another try to deal with #1998
  173. * [Fix] Another try to fix #1998
  174. * [Fix] Another try to fix threading in torch
  175. * [Fix] Apply language detection when adding fuzzy hashes
  176. * [Fix] ARC: Fix Lua 5.3 compatibility; timestamp should be integer
  177. * [Fix] Authentication Results: Fix SPF smtp.mail_from
  178. * [Fix] Auth-Results: Multiple DKIM signatures
  179. * [Fix] Avoid changing content-transfer-encoding header's value
  180. * [Fix] Better handling of the legacy protocol
  181. * [Fix] Check decoded headers sanity (e.g. by excluding \0)
  182. * [Fix] Check for magic when checking for an archive
  183. * [Fix] Cleanup mess with groups
  184. * [Fix] Clickhouse: Insertion in the symbols table
  185. * [Fix] Crash in URL processing
  186. * [Fix] Deal with another case when processing exceptions
  187. * [Fix] Deal with deeply nested messages more aggressively
  188. * [Fix] Deal with nan and inf encoding in json/ucl
  189. * [Fix] Deal with non-key arguments in lua_redis.exec_script
  190. * [Fix] Deal with unknown weight
  191. * [Fix] Deal with URLs with no slashes after protocol
  192. * [Fix] Deal with URLs wrapped in [] in text parts
  193. * [Fix] Deal with zero scores symbols
  194. * [Fix] Default monitoring domain for surbl plugin
  195. * [Fix] Delay upstream re-resolving when one upstream is defined
  196. * [Fix] Detection of maillist optimized and fixed
  197. * [Fix] DKIM signing: allow for auth_only to be false
  198. * [Fix] DMARC: require report_settings for sending reports only
  199. * [Fix] Do not allow garbadge when checking url domain
  200. * [Fix] Do not cache SPF records with PTR elements
  201. * [Fix] Do not constantly re-resolve failed upstreams with a single element
  202. * [Fix] Do not crash if no words defined
  203. * [Fix] Do not crash on empty subtype
  204. * [Fix] Do not expose spamtrap messages to SMTP reply
  205. * [Fix] Do not fail rbl plugin when there are no received or emails
  206. * [Fix] Do not ignore short words
  207. * [Fix] Do not include idempotent/nostat symbols to checksum
  208. * [Fix] Do not override groups when converting metrics
  209. * [Fix] Do not override unix socket group when group comes before owner
  210. * [Fix] Do not skip the last character
  211. * [Fix] Do not spawn too many workers by default
  212. * [Fix] Do not stop monitored on dns errors
  213. * [Fix] Do not stop parsing headers on bad IP header
  214. * [Fix] Do not strip last character in the last word
  215. * [Fix] Do not treat script content as text
  216. * [Fix] Do not try to connect to non-supported addresses
  217. * [Fix] Do not try to dereference last character
  218. * [Fix] Do not try to sign unknown domains
  219. * [Fix] Don't use whitelist/greylist maps as regexp, but as map
  220. * [Fix] Erase unknown HTML entities
  221. * [Fix] Exim Received header protocol parsing
  222. * [Fix] First load selector_map and path_map. And only return false when domain not found if try_fallback is false
  223. * [Fix] Fix a lot of FP in chartable in mixed languages
  224. * [Fix] Fix ANN checks
  225. * [Fix] Fix ANN loading logic
  226. * [Fix] Fix another tokenization issue
  227. * [Fix] Fix autolearn parameters reading
  228. * [Fix] Fix bad archive characters stripping
  229. * [Fix] Fix bad extension check
  230. * [Fix] Fix bayes schema conversion
  231. * [Fix] Fix blacklists and DMARC in whitelist
  232. * [Fix] Fix brain-damaged torch build system
  233. * [Fix] Fix build on FreeBSD
  234. * [Fix] Fix clickhouse exporter
  235. * [Fix] Fix clickhouse schema
  236. * [Fix] Fix comparision
  237. * [Fix] Fix composites processing
  238. * [Fix] Fix connecting to a unix socket in rspamadm statconvert
  239. * [Fix] Fix couple of warnings
  240. * [Fix] Fix crashes in the rspamd_control path
  241. * [Fix] Fix deletion from hash
  242. * [Fix] Fix DKIM forgeries via multiple headers
  243. * [Fix] FIx dynamic conf plugin
  244. * [Fix] Fix emails detection
  245. * [Fix] Fix empty headers simple canonicalization
  246. * [Fix] Fix empty threshold check in greylisting module
  247. * [Fix] Fix encrypted legacy reply in fuzzy storage
  248. * [Fix] Fix enormous scores for R_WHITE_ON_WHITE
  249. * [Fix] Fix exceptions list in surbl
  250. * [Fix] Fix *_EXCESS_BASE64 rules
  251. * [Fix] Fix expire rounding
  252. * [Fix] Fix extra hits in PCRE mode for regular expressions
  253. * [Fix] Fix format strings
  254. * [Fix] Fix get_content method
  255. * [Fix] Fix groups override when defining symbols
  256. * [Fix] Fix learned count in new schema
  257. * [Fix] Fix learn errors propagation
  258. * [Fix] Fix loading of per-user redis backend for statistics
  259. * [Fix] Fix logging buffer corruption in case of repeated messages
  260. * [Fix] Fix lua cached elements invalidation
  261. * [Fix] Fix merging of the implicit arrays
  262. * [Fix] Fix mime_types scoring
  263. * [Fix] Fix multiple headers in DKIM headers list
  264. * [Fix] Fix null callee case in clang plugin
  265. * [Fix] Fix obscured url in format user@@example.com
  266. * [Fix] Fix parsing of the per-user script
  267. * [Fix] Fix priorities in rspamd_update, disable rules execution
  268. * [Fix] Fix processing of closed tags
  269. * [Fix] Fix processing of idempotent rules when autolearn fails
  270. * [Fix] Fix processing of multipart parts with no headers
  271. * [Fix] Fix processing of skip-hashes in fuzzy storage
  272. * [Fix] Fix PTR processing in SPF
  273. * [Fix] Fix pushing country to clickhouse asn table
  274. * [Fix] Fix random forests module
  275. * [Fix] Fix real IP parsing for some strange Exim received
  276. * [Fix] Fix Redis timeout setup
  277. * [Fix] Fix reload crash when hyperscan is enabled
  278. * [Fix] Fix reusing of redis connection after exec
  279. * [Fix] Fix sanity checks on macro value
  280. * [Fix] Fix setting of path and cpath for Lua
  281. * [Fix] Fix setting of signals when spawning a thread
  282. * [Fix] Fix text splitting: stack overflow (too many captures)
  283. * [Fix] Fix ticks processing
  284. * [Fix] Fix upstream addrs updating
  285. * [Fix] Fix urls/emails distinguishing found in queries
  286. * [Fix] Fix user settings check
  287. * [Fix] Fix variable increment
  288. * [Fix] Fix various issues in stat_convert
  289. * [Fix] F-PROT Antivirus infection string for all known occurences
  290. * [Fix] F-PROT Antivirus: only check return code to determine infection
  291. * [Fix] Further fixes around floating point expressions
  292. * [Fix] Further fixes to ANN module
  293. * [Fix] Further fixes to rescore tool
  294. * [Fix] Further fixes to support ES 6
  295. * [Fix] Further tokenization fixes
  296. * [Fix] Greylisting set phase is not idempotent
  297. * [Fix] Handle proxy copy errors
  298. * [Fix] Header checks: Fix get_raw_header method
  299. * [Fix] Header checks: REPLYTO_UNPARSEABLE rule
  300. * [Fix] Kill spawned processes on termination
  301. * [Fix] Load skip map from all processes as shared cache is unavailable
  302. * [Fix] Lowercase HTTP headers to make them searchable from Lua
  303. * [Fix] Lowercase words
  304. * [Fix] Lua_http: freeing
  305. * [Fix] Lua: lpeg to be loaded with rspamd_lua_add_preload, to avoid "rspamd_config_read: rcl parse error: cannot init lua file […] module 'lpeg' not found"
  306. * [Fix] Map absence is not an error
  307. * [Fix] Metadata exporter: check IP sanity
  308. * [Fix] Milter headers: custom headers: removing headers
  309. * [Fix] Milter headers: skip_local / skip_authenticated settings
  310. * [Fix] Milter headers: X-Spamd-Result header if X-Virus ran first
  311. * [Fix] mime_types: fix next-to-last extension length check
  312. * [Fix] More hacks to deal with old configs
  313. * [Fix] Move composites second pass to the dedicated stage
  314. * [Fix] Multimap: received: filtering of artificial header
  315. * [Fix] Multiple fixes in torch based ANN plugins
  316. * [Fix] Once more (#1879) fix bad extension check
  317. * [Fix] Optimize rspamd_fstring_t reallocations
  318. * [Fix] options.local_networks setting
  319. * [Fix] Parse HREF urls without explicit prefix
  320. * [Fix] Plan new event on HTTP errors
  321. * [Fix] Plug another possible memory leak
  322. * [Fix] Plug memory leak
  323. * [Fix] Plug memory leak in lua_tcp
  324. * [Fix] Plug memory leak when setting email addresses from Lua
  325. * [Fix] Propagate learn/stat errors more precisely
  326. * [Fix] Ratelimit: fix whitelisted_rcpts matching
  327. * [Fix] Ratelimit: lowercase email addresses
  328. * [Fix] RBL: received: deal with missing data (#1965)
  329. * [Fix] Rebalance and slightly rework MX check plugin
  330. * [Fix] Redis key expansion: EVAL: deal with strings
  331. * [Fix] Redis script loading in DMARC; URL tags; URL reputation
  332. * [Fix] Reject invalid bh for DKIM signatures earlier
  333. * [Fix] Relax pem signature detection
  334. * [Fix] Relax unicode properties requirements for chartable module
  335. * [Fix] Remove extra noise from dkim and arc signing
  336. * [Fix] Remove hop-by-hop headers in proxy
  337. * [Fix] Remove incorrect method `task:set_metric_subject`
  338. * [Fix] Replace space like characters in headers with plain space
  339. * [Fix] Restore old style ratelimits support
  340. * [Fix] Rework elasticsearch plugin
  341. * [Fix] Rewriting subjects via force actions module
  342. * [Fix] RPM postinstall
  343. * [Fix] Sanitize IP in history redis
  344. * [Fix] Select the correct signature when doing simple canon
  345. * [Fix] Set CLOEXEC flag on files opened
  346. * [Fix] Setting check_local / check_authed in plugins (#1954)
  347. * [Fix] Settings: avoid checking invalid IP (#1981)
  348. * [Fix] Settings: header: deal with multiple settings (#1988)
  349. * [Fix] Skip checks if both extensions are not bad
  350. * [Fix] Skip nostat tokens when get number of tokens
  351. * [Fix] Some more fixes towards emails detection
  352. * [Fix] SpamAssassin: Fail check_freemail_header if regexp didn't match
  353. * [Fix] Stop using of g_slice...
  354. * [Fix] Switch rspamadm logging to message level
  355. * [Fix] Symbol 'FANNR_SPAM' has its score defined..
  356. * [Fix] Table parameter for rspamd_config:add_doc()
  357. * [Fix] Treat 'rewrite subject' as spam action
  358. * [Fix] Try harder in passing IPv6 addresses
  359. * [Fix] Try harder to find rfc822 notifications
  360. * [Fix] Try harder to find urls
  361. * [Fix] Use decoded values when parsing mime addresses
  362. * [Fix] Use full URL when making an HTTP request
  363. * [Fix] Use greylisting threshold in greylisting module
  364. * [Fix] Use n_words attribute from ngramms
  365. * [Fix] Use raw urls when sending requests to redirector
  366. * [Fix] Use the right boolean operator on error check
  367. * [Fix] Use weight from map for fuzzy scoring
  368. * [Fix] Various fixes to elastic plugin
  369. * [Fix] Various fixes to fann_redis instantiation
  370. * [Fix] Various improvements in language detection
  371. * [Fix] Virus infection string for F-PROT Antivirus
  372. * [Fix] Virus infetction string for F-PROT Antivirus
  373. * [Fix] WebUI: use relative path for savemap (#1943)
  374. * [Fix] WHITE_ON_WHITE: Ensure score is matched to part that fired the rule
  375. * [Fix] Write configuration changes as UCL config
  376. * [Project] Add detection logic for words
  377. * [Project] Add fast debug logging infrastructure
  378. * [Project] Add more flags to languages
  379. * [Project] Add n-gramms data files
  380. * [Project] Add ngramms frequencies detector
  381. * [Project] Add random words selection logic
  382. * [Project] Add unigramms to language detection as well
  383. * [Project] Convert all C modules to fast debug infrastructure
  384. * [Project] Detect some languages based on unicode script
  385. * [Project] Enable fast debug lookup for some modules
  386. * [Project] Enable language detector init in scanner workers
  387. * [Project] Further improvements to language detector
  388. * [Project] Implement logic of ngramms application
  389. * [Project] Improve weighting in lang_detection
  390. * [Project] Initialize language detector
  391. * [Project] Preliminary version of ngramms based language detector
  392. * [Project] Preliminary version of the new stat_convert
  393. * [Project] Remove old language detector
  394. * [Project] Rework language detection ngramms structure
  395. * [Project] Start language detection project
  396. * [Project] Start rework of language detection to improve quality
  397. * [Project] Use fast debug logging check
  398. * [Rework] Add frame for new reputation based IP score module
  399. * [Rework] Continue stat_convert rework task
  400. * [Rework] Implement new version of fuzzy replies
  401. * [Rework] Improve readability of xmlrpc API
  402. * [Rework] Kill metrics!11
  403. * [Rework] Ratelimit module
  404. * [Rework] Rename fann_redis to neural plugin
  405. * [Rework] Reorganize mime_types module
  406. * [Rework] Rework rescore utility
  407. * [Rework] Rewrite model and learning logic for rescore
  408. * [Rework] Run post-loads when all initialization is completed
  409. * [Rework] Simplify lua path initialization
  410. * [Rework] Start major stat_convert rework
  411. * [Rework] Start mempool fragmentation reduce project
  412. * [Rework] Start moving of fann redis to torch
  413. * [Rework] Stop embedding rspamadm scripts into C
  414. * [Rework] Use floating point arithmetics in Rspamd expressions
  415. * [Rework] Use frequencies distribution in language detector
  416. * [Rules] Penalise R_BAD_CTE_7BIT for utf8 messages
  417. * [WebUI] Compact graph selectors
  418. * [WebUI] Escape strings inside HTML in history
  419. * [WebUI] Fix message count in throughput summary (#1724)
  420. * [WebUI] Fix NaNs display on Throughput graph
  421. * [WebUI] Migrate widgets to D3 v4
  422. * [WebUI] Restore passwordless login support (#2003)
  423. * [WebUI] Show symbol descriptions as tooltips in history
  424. * [WebUI] Stop using commas in pie chart tooltips
  425. * [WebUI] Update D3 and jQuery
  426. * [WebUI] Update D3Evolution 1.0.0 -> 1.1.0
  427. 1.6.6: 16 Feb 2018
  428. * [CritFix] Add sanity guards for badly broken HTML
  429. * [CritFix] Another errors path handling fix
  430. * [CritFix] Fix ARC chain verification
  431. * [CritFix] Fix crash in milter errors handler
  432. * [Feature] Allow to insert headers into specific position
  433. * [Feature] Allow to receive signing keys from mempool vars
  434. * [Feature] Authentication-Results: support hiding usernames
  435. * [Fix] Another try to deal with #1998
  436. * [Fix] Another try to fix #1998
  437. * [Fix] Better handling of the legacy protocol
  438. * [Fix] Check decoded headers sanity (e.g. by excluding \0)
  439. * [Fix] Deal with nan and inf encoding in json/ucl
  440. * [Fix] Deal with URLs wrapped in [] in text parts
  441. * [Fix] DKIM signing: allow for auth_only to be false
  442. * [Fix] Do not crash on empty subtype
  443. * [Fix] Do not fail rbl plugin when there are no received or emails
  444. * [Fix] Do not skip the last character
  445. * [Fix] Do not try to dereference last character
  446. * [Fix] Do not try to sign unknown domains
  447. * [Fix] Exim Received header protocol parsing
  448. * [Fix] First load selector_map and path_map. And only return false when domain not found if try_fallback is false
  449. * [Fix] Fix bad archive characters stripping
  450. * [Fix] Fix comparision
  451. * [Fix] Fix connecting to a unix socket in rspamadm statconvert
  452. * [Fix] Fix empty headers simple canonicalization
  453. * [Fix] Fix extra hits in PCRE mode for regular expressions
  454. * [Fix] Fix parsing of the per-user script
  455. * [Fix] Fix processing of skip-hashes in fuzzy storage
  456. * [Fix] Fix Redis timeout setup
  457. * [Fix] Fix sanity checks on macro value
  458. * [Fix] Fix text splitting: stack overflow (too many captures)
  459. * [Fix] Fix urls/emails distinguishing found in queries
  460. * [Fix] F-PROT Antivirus: only check return code to determine infection
  461. * [Fix] Metadata exporter: check IP sanity
  462. * [Fix] Multimap: received: filtering of artificial header
  463. * [Fix] Plan new event on HTTP errors
  464. * [Fix] Plug another possible memory leak
  465. * [Fix] Remove hop-by-hop headers in proxy
  466. * [Fix] Sanitize IP in history redis
  467. * [Fix] Setting check_local / check_authed in plugins (#1954)
  468. * [Fix] Settings: avoid checking invalid IP (#1981)
  469. * [Fix] Try harder in passing IPv6 addresses
  470. * [Fix] WebUI: use relative path for savemap (#1943)
  471. * [WebUI] Fix message count in throughput summary (#1724)
  472. * [WebUI] Fix NaNs display on Throughput graph
  473. * [WebUI] Restore passwordless login support (#2003)
  474. 1.6.5: 22 Oct 2017
  475. * [CritFix] Another portion of tokenization fixes
  476. * [CritFix] Fix memory leak in spf caching logic
  477. * [CritFix] Fix milter commands pipelining
  478. * [CritFix] Fix newlines detection
  479. * [Feature] Filter nan and inf when adding scores
  480. * [Feature] Implement headers flags in mime parser
  481. * [Feature] Support Expires header when using HTTP maps
  482. * [Fix] Actively load skip hashes map in fuzzy storage
  483. * [Fix] Add workaround for IPv6 in sendmail
  484. * [Fix] Authentication Results: Fix SPF smtp.mail_from
  485. * [Fix] Check for magic when checking for an archive
  486. * [Fix] Deal with another case when processing exceptions
  487. * [Fix] Deal with URLs with no slashes after protocol
  488. * [Fix] Do not allow garbadge when checking url domain
  489. * [Fix] Do not ignore short words
  490. * [Fix] Do not strip last character in the last word
  491. * [Fix] Do not treat script content as text
  492. * [Fix] Erase unknown HTML entities
  493. * [Fix] Fix another tokenization issue
  494. * [Fix] Fix DKIM forgeries via multiple headers
  495. * [Fix] Fix emails detection
  496. * [Fix] Fix empty threshold check in greylisting module
  497. * [Fix] Fix enormous scores for R_WHITE_ON_WHITE
  498. * [Fix] Fix loading of per-user redis backend for statistics
  499. * [Fix] Fix multiple headers in DKIM headers list
  500. * [Fix] Fix obscured url in format user@@example.com
  501. * [Fix] Further tokenization fixes
  502. * [Fix] Load skip map from all processes as shared cache is unavailable
  503. * [Fix] Lowercase words
  504. * [Fix] Milter headers: skip_local / skip_authenticated settings
  505. * [Fix] Milter headers: X-Spamd-Result header if X-Virus ran first
  506. * [Fix] Ratelimit: fix whitelisted_rcpts matching
  507. * [Fix] Some more fixes towards emails detection
  508. * [Fix] SpamAssassin: Fail check_freemail_header if regexp didn't match
  509. * [Fix] Use greylisting threshold in greylisting module
  510. 1.6.4: 10 Sep 2017
  511. * [Feature] Add method to get all content-type attributes in Lua
  512. * [Feature] Add some sanity checks for actions and controller
  513. * [Feature] Allow randomly select User-Agent from a list
  514. * [Feature] Deal with obscured URLs with @ symbols
  515. * [Feature] Milter headers: support adding/removing arbitrary headers from config
  516. * [Fix] Add another workaround to display history properly
  517. * [Fix] Add missing rspamadm control options to help
  518. * [Fix] Auth-Results: Multiple DKIM signatures
  519. * [Fix] Crash in URL processing
  520. * [Fix] Default monitoring domain for surbl plugin
  521. * [Fix] Detection of maillist optimized and fixed
  522. * [Fix] Do not cache SPF records with PTR elements
  523. * [Fix] Fix blacklists and DMARC in whitelist
  524. * [Fix] Fix exceptions list in surbl
  525. * [Fix] Fix processing of closed tags
  526. * [Fix] Fix PTR processing in SPF
  527. * [Fix] Lowercase HTTP headers to make them searchable from Lua
  528. * [Fix] options.local_networks setting
  529. * [Fix] Ratelimit: lowercase email addresses
  530. * [Fix] Rebalance and slightly rework MX check plugin
  531. * [Fix] Redis script loading in DMARC; URL tags; URL reputation
  532. * [Fix] Reject invalid bh for DKIM signatures earlier
  533. * [Fix] Remove incorrect method `task:set_metric_subject`
  534. * [Fix] Rewriting subjects via force actions module
  535. * [Fix] RPM postinstall
  536. * [Fix] Treat 'rewrite subject' as spam action
  537. * [Fix] Try harder to find urls
  538. * [Fix] Use full URL when making an HTTP request
  539. * [Fix] Use raw urls when sending requests to redirector
  540. * [Fix] Use weight from map for fuzzy scoring
  541. * [Rules] Penalise R_BAD_CTE_7BIT for utf8 messages
  542. 1.6.3: 26 Jul 2017
  543. * [CritFix] Fix semicolons parsing in the content type
  544. * [Feature] Add EBL to the default config
  545. * [Feature] Allow to configure monitored
  546. * [Feature] Allow to skip specific hashes in fuzzy storage
  547. * [Feature] Multimap: checking of symbol options
  548. * [Feature] Redis settings: support checking multiple keys
  549. * [Fix] ARC: Fix Lua 5.3 compatibility; timestamp should be integer
  550. * [Fix] Avoid changing content-transfer-encoding header's value
  551. * [Fix] Don't use whitelist/greylist maps as regexp, but as map
  552. * [Fix] Fix get_content method
  553. * [Fix] Header checks: Fix get_raw_header method
  554. * [Fix] Header checks: REPLYTO_UNPARSEABLE rule
  555. * [Fix] Lua_http: freeing
  556. * [Fix] Milter headers: custom headers: removing headers
  557. * [Fix] Parse HREF urls without explicit prefix
  558. * [Fix] WHITE_ON_WHITE: Ensure score is matched to part that fired the rule
  559. * [WebUI] Escape strings inside HTML in history
  560. 1.6.2: 08 Jul 2017
  561. * [Conf] Remove Rambler email bl for now
  562. * [Conf] Switch RAMBLER_URIBL to a locally managed source
  563. * [CritFix] Switch from ragel to C for Content-Type parsing
  564. * [Feature] Add `-e` option for lua_repl
  565. * [Feature] Add per-domain emails normalisation rules
  566. * [Feature] Add sessions cache to debug dangling sessions
  567. * [Feature] Add short_text_direct_hash for fuzzy check module
  568. * [Feature] Add text_part:get_stats function
  569. * [Feature] Allow to add custom processing script for surbl
  570. * [Feature] Allow to check reply-to email
  571. * [Feature] Allow to customize spam header, remove existing spam headers
  572. * [Feature] Allow to disable specific workers in the config
  573. * [Feature] Allow to discard messages instead of rejection
  574. * [Feature] Allow to specify custom delimiter in emails plugin
  575. * [Feature] Allow to specify custom User-Agent for rspamc
  576. * [Feature] Allow to store symbols data in Clickhouse
  577. * [Feature] Allow to use HTTPS when connecting to Clickhouse
  578. * [Feature] Enable sessions cache tracking for milter connections
  579. * [Feature] Implement per-line mode in lua_repl (like `perl -p`)
  580. * [Feature] Implement rdns-curve plugin based on rspamd cryptobox
  581. * [Feature] Improve maps cached data lifetime
  582. * [Feature] Improve maps checking frequency
  583. * [Feature] Improve monitored timeouts logic
  584. * [Feature] milter_headers: add `extended_headers_rcpt` option
  585. * [Feature] Milter headers: Add X-Spam-Flag to rmilter-compatibility headers
  586. * [Feature] Milter headers: remove-header routine
  587. * [Feature] Multimap: received filters for extracting TLDs from hostnames
  588. * [Feature] Normalize email aliases in emails module
  589. * [Feature] Re-add rambler email bl (as hashed list)
  590. * [Feature] Reload file maps more frequently
  591. * [Feature] Rework newlines strip parser one more time
  592. * [Feature] Skip updates for messages scanned via controller
  593. * [Feature] Split long DKIM public keys
  594. * [Feature] Store more data when stripping newlines
  595. * [Feature] Support SPF macros transformations
  596. * [Feature] Support suppressing DMARC reports for some domains
  597. * [Fix] Add missing `break` statement
  598. * [Fix] Allow modifiers in SPF macros
  599. * [Fix] DKIM sign tools: edge-cases around use_esld
  600. * [Fix] Do not cache SPF records with macros
  601. * [Fix] Do not overwrite score when setting pre-action
  602. * [Fix] Fix comparison logic
  603. * [Fix] Fix DKIM base64 folding for milter flagged messages
  604. * [Fix] Fix emails module configuration
  605. * [Fix] Fix folding for arc headers when milter interface is used
  606. * [Fix] Fix gmail dots removal
  607. * [Fix] Fix rspamc detection in greylist module
  608. * [Fix] Fix some more issues with HTTP maps
  609. * [Fix] Milter sessions can live forever
  610. * [Fix] Normalize fuzzy probability better
  611. * [Fix] Plug memory leak
  612. * [Fix] RBL: Fixed hashed email address lookups
  613. * [Fix] Try to deal with brain-damaged milter behaviour
  614. * [Fix] Use `\n` to fold headers for milter
  615. * [Rework] Allow to use custom callback for monitored checks
  616. * [Rework] Further steps towards one process monitoring
  617. * [Rework] Send health checks from a single worker
  618. * [WebUI] Round-up throughput summary values
  619. 1.6.1: 14 Jun 2017
  620. * [Fix] Allow to init resolver without rspamd_config
  621. * [Fix] Do not crash when resolver failed to initialize
  622. * [Fix] Fix abstract context layout
  623. * [Fix] Fix CGP helper reply parsing
  624. * [Fix] Fix crashes when socket write errors occur
  625. * [Fix] Fix parsing IPv6 nameservers in resolv.conf
  626. * [Fix] Milter: Don't defer on "greylist" action
  627. 1.6.0: 12 Jun 2017
  628. * [Conf] Add rspamd_proxy to the default configuration set
  629. * [Conf] Add sample arc module config
  630. * [Conf] Do away with systemd specifics completely
  631. * [Conf] Increase min_bytes to avoid FP
  632. * [Conf] Remove ratelimits from default configuration
  633. * [CritFix] Fix accepting on IPv6 sockets
  634. * [CritFix] Fix corruption when multiple fuzzy are defined
  635. * [CritFix] Fix learn condition in fuzzy check
  636. * [CritFix] Fix memory leak in fuzzy check
  637. * [CritFix] Fix memory leak in maps scheduling
  638. * [CritFix] Paese the last character in DKIM signature correctly
  639. * [CritFix] Zero fill sockaddr_un
  640. * [Feature] Add ability to add doc strings by example
  641. * [Feature] Add API to verify DKIM (and ARC) signatures
  642. * [Feature] Add compression/decompression to proxy
  643. * [Feature] Add count to url structure
  644. * [Feature] Add initial support of the new protocol reply
  645. * [Feature] Add Lua plugin spamtrap
  646. * [Feature] Add `monitored_address` for rbls
  647. * [Feature] Add new schema for bayes tokens
  648. * [Feature] Add preliminary ARC support to dkim code
  649. * [Feature] Add preliminary support of ARC signing
  650. * [Feature] Add rules to detect bad 8bit characters in From and To
  651. * [Feature] Add scanning support for milter protocol
  652. * [Feature] Add support for bidirectional symbols in rspamd_stats
  653. * [Feature] Add support for static maps
  654. * [Feature] Add support of maps with multiple regexps matches
  655. * [Feature] Add `text_multiplier` param
  656. * [Feature] Add the preliminary ARC plugin
  657. * [Feature] Add top redirector targets rank
  658. * [Feature] Allow async events to be registered from LUA rules
  659. * [Feature] Allow storing bayes tokens in Redis
  660. * [Feature] Allow to exclude specific domains from mx check
  661. * [Feature] Allow to have a stack of watcher finalisers
  662. * [Feature] Allow to pass hostname to `-i` flag in Rspamc
  663. * [Feature] Allow to set custom user agent in url redirector
  664. * [Feature] Allow to use custom callback when parsing resolv.conf
  665. * [Feature] Allow to use domain from authenticated user
  666. * [Feature] Bayes expiry plugin
  667. * [Feature] Check dkim sign keys for modifications
  668. * [Feature] DKIM signing: sign_networks/local address specific use_domain settings
  669. * [Feature] DMARC: Support excluding domains from sampling
  670. * [Feature] Expire processing items for URL redirector aggressively
  671. * [Feature] Fix surbl monitored for IP lists, add `monitored_domain` option
  672. * [Feature] Implement caching for dkim body hashes
  673. * [Feature] Implement milter protocol scan reply
  674. * [Feature] Improve omograph phishing detection
  675. * [Feature] Initial support of self-scan in Rspamd proxy
  676. * [Feature] Keep track of headers in milter interface
  677. * [Feature] Milter headers: better controls for local/authenticated
  678. * [Feature] Multimap: email:domain:tld filter
  679. * [Feature] Preliminary DMARC reporting implementation
  680. * [Feature] Reuse stemmers in the cache
  681. * [Feature] Rework confighelp to load Lua plugins
  682. * [Feature] Rework hfilter to use hyperscan if possible
  683. * [Feature] Rework lua RSA API
  684. * [Feature] Rmilter_headers: approximate rmilter's extended_spam_headers
  685. * [Feature] Start integration of milter support in proxy
  686. * [Feature] Store average words length and short words count
  687. * [Feature] Store hash of headers order and names
  688. * [Feature] Support MTA name header
  689. * [Feature] Support multiple types of dkim signing in Lua
  690. * [Feature] Support numeric arguments for Redis requests
  691. * [Feature] Use headers hash in bayes metatokens
  692. * [Feature] Use normal resolv.conf rules of rotation in Rspamd
  693. * [Feature] Use version 2 proto for checking messages
  694. * [Fix] Allow to follow symlinks when safe
  695. * [Fix] Append MX name for authentication results as required
  696. * [Fix] Change default text multiplier from 0.5 to 2.0
  697. * [Fix] Check min_bytes for images as well
  698. * [Fix] Deal with 7bit charsets properly
  699. * [Fix] Deal with 8bit characters in email addresses
  700. * [Fix] Deal with unpaired <a> tags
  701. * [Fix] Detect confighelp in plugins initialisation
  702. * [Fix] Disable certain checks for utf spoof detection
  703. * [Fix] DKIM Signing: avoid nil index when From header is missing
  704. * [Fix] Do not add exact hashes from different parts
  705. * [Fix] Do not check DMARC if SPF or DKIM were not checked
  706. * [Fix] Do not check URLs that are resolved to be redirected
  707. * [Fix] Do not set bayes probability if we don't use it
  708. * [Fix] Do not stop on illegal unicode points - replace them
  709. * [Fix] Fix another race condition in arc checks
  710. * [Fix] Fix arc count logic
  711. * [Fix] Fix ARC signing
  712. * [Fix] Fix brain-damaged spamc protocol for now
  713. * [Fix] Fix calling for peak functions
  714. * [Fix] Fix couple of issues in FORWARDED rule
  715. * [Fix] Fix CTE propagation from parent containers to children parts
  716. * [Fix] Fix errors processing in the controller
  717. * [Fix] Fix format string in milter
  718. * [Fix] Fix issues in SPF macros parsing
  719. * [Fix] Fix logging format string
  720. * [Fix] Fix logic of cached passwords check
  721. * [Fix] Fix lowercasing of stemmed words
  722. * [Fix] Fix LRU elements removal
  723. * [Fix] Fix memory leak when accepting from unix sockets
  724. * [Fix] Fix milter connections persistence
  725. * [Fix] Fix objects merging in UCL
  726. * [Fix] Fix order of operations to avoid race condition
  727. * [Fix] Fix parsing of long regexp types
  728. * [Fix] Fix passing data to log helper when many symbols defined
  729. * [Fix] Fix pools management for milter session
  730. * [Fix] Fix processing of the watchers
  731. * [Fix] Fix queue id macro in milter
  732. * [Fix] Fix R_BAD_CTE_7BIT rule
  733. * [Fix] Fix Redis timeout set
  734. * [Fix] Fix REPLYTO_UNPARSEABLE rule
  735. * [Fix] Fix setting of email address
  736. * [Fix] Fix some more issues about duplicated fuzzy requests
  737. * [Fix] Fix spamc support in rspamd proxy
  738. * [Fix] Fix syntax error in spamtrap plugin
  739. * [Fix] Fix url counts for href urls
  740. * [Fix] Fix url handling in the protocol
  741. * [Fix] Multimap: Received IP filters with Redis
  742. * [Fix] Oops, fix d9d0fa5e86db2f4470d34395a233b450478b2f60
  743. * [Fix] Parse rgb[a](x,x,x[,x]) css colors
  744. * [Fix] Phishing: strict_domains
  745. * [Fix] Reduce maps aggressiveness
  746. * [Fix] Reresolve upstreams even if there is a single server there
  747. * [Fix] Rspamadm grep: Disable Lua patterns in string search by default
  748. * [Fix] Skip text parts when checking binary parts in fuzzy check
  749. * [Fix] Support v2 checks in controller
  750. * [Fix] Treat empty address as valid
  751. * [Fix] Try harder to detect CTE
  752. * [Fix] Try to deal with v4 mapped to v6 addresses on accept
  753. * [Fix] Use dkim signing callback properly
  754. * [Fix] Use non-volatile memory for storing data
  755. * [Fix] Use static maps instead of ugly hack for radix_from_config
  756. * [Fix] Use the same pool for related sessions
  757. * [Rework] Continue modularisation for lua library
  758. * [Rework] Initial milter protocol support
  759. * [Rework] Make log pipes worker agnostic, add scanners API
  760. * [Rework] Move authentication results generation to a separate routine
  761. * [Rework] Move common DKIM functions to a separate lua module
  762. * [Rework] Move global functions to a separate directory
  763. * [Rework] Prepare dkim module for ARC checks
  764. * [Rework] Propagate ucl variables from the command line
  765. * [Rework] Remove multiple metrics support from Rspamd
  766. * [Rework] Stop using name 'rmilter' for the modern protocol
  767. * [Rework] Use LFU algorithm in LRU cache
  768. * [Rules] Fix received TLS rules
  769. * [Rules] Improve URL_COUNT_ODD rule
  770. * [WebUI] Fix add header filter in history
  771. * [WebUI] Use modern protocol for checking messages
  772. 1.5.9:
  773. * [Conf] Increase min_bytes to avoid FP
  774. * [Conf] Remove ratelimits from default configuration
  775. * [CritFix] Fix accepting on IPv6 sockets
  776. * [CritFix] Zero fill sockaddr_un
  777. * [Feature] Add `text_multiplier` param
  778. * [Fix] Check min_bytes for images as well
  779. * [Fix] Do not add exact hashes from different parts
  780. * [Fix] Fix memory leak when accepting from unix sockets
  781. * [Fix] Fix some more issues about duplicated fuzzy requests
  782. * [Fix] Phishing: strict_domains
  783. * [Fix] Skip text parts when checking binary parts in fuzzy check
  784. * [Minor] Add the same duplicates protection for all fuzzy hashes types
  785. * [Minor] Fix braces
  786. * [Minor] Fix test
  787. * [Minor] SPOOF_DISPLAY_NAME: Use all SMTP/MIME recipients
  788. * [Minor] Validate assumed spoofed display name domains to contain a dot
  789. 1.5.8:
  790. * [CritFix] Fix memory leak in fuzzy check
  791. * [CritFix] Fix memory leak in maps scheduling
  792. * [Feature] Multimap: email:domain:tld filter
  793. * [Fix] DKIM Signing: avoid nil index when From header is missing
  794. * [Fix] Do not set bayes probability if we don't use it
  795. * [Fix] Do not stop on illegal unicode points - replace them
  796. * [Fix] Fix brain-damaged spamc protocol for now
  797. * [Fix] Fix Redis timeout set
  798. * [Fix] Fix spamc support in rspamd proxy
  799. * [Fix] Multimap: Received IP filters with Redis
  800. * [Fix] Parse rgb[a](x,x,x[,x]) css colors
  801. * [Fix] Reresolve upstreams even if there is a single server there
  802. * [Fix] Treat empty address as valid
  803. * [Fix] Try harder to detect CTE
  804. * [Fix] Try to deal with v4 mapped to v6 addresses on accept
  805. * [Minor] Add `wsf` and `hta` bad archive extensions
  806. * [Minor] Fix configuration option
  807. * [Minor] Fix result parsing for SAVAPI
  808. * [Minor] Further logging improvements
  809. * [Minor] Improve logging of errors
  810. * [Minor] Prevent MID_CONTAINS_FROM from firing on empty address
  811. * [Minor] Reduce digit->number transmission penalty
  812. * [Minor] Relax CTYPE_MISSING_DISPOSITION rule
  813. 1.5.7:
  814. * [CritFix] Fix corruption when multiple fuzzy are defined
  815. * [CritFix] Fix learn condition in fuzzy check
  816. * [Feature] Add rules to detect bad 8bit characters in From and To
  817. * [Feature] DKIM signing: sign_networks/local address specific use_domain settings
  818. * [Feature] Support numeric arguments for Redis requests
  819. * [Fix] Deal with 8bit characters in email addresses
  820. * [Fix] Fix couple of issues in FORWARDED rule
  821. * [Fix] Fix passing data to log helper when many symbols defined
  822. * [Fix] Fix R_BAD_CTE_7BIT rule
  823. * [Fix] Fix REPLYTO_UNPARSEABLE rule
  824. * [Fix] Fix setting of email address
  825. * [Fix] Rspamadm grep: Disable Lua patterns in string search by default
  826. * [Minor] Add Lua 5.3 workaround
  827. * [Minor] Add lua methods to detect if a part has 8bit characters
  828. * [Minor] Allow session-less lua dns requests
  829. * [Minor] Allow to append greylist end time to message reported
  830. * [Minor] Avoid `nil` table
  831. * [Minor] Disable dkim_signing if redis is specified but not configured
  832. * [Minor] Fix build with pcre2
  833. * [Minor] Fix rule
  834. * [Minor] Fix warnings
  835. * [Minor] Format floating point number
  836. * [Minor] Push email flags to the lua API
  837. * [Minor] Silence some warnings
  838. * [Minor] Silence warning
  839. * [Minor] Try all hostname regexps to find the most significant one
  840. * [WebUI] Fix add header filter in history
  841. 1.5.6:
  842. * [Feature] Add unigramms support in bayes
  843. * [Feature] Allow configurable sign headers for DKIM
  844. * [Feature] Allow to add unigramm metatokens from Lua
  845. * [Feature] DKIM Signing: envelope match exception for local IPs
  846. * [Feature] UCL: register parser variables from Lua
  847. * [Fix] Always try to adjust filename
  848. * [Fix] Do extra copy to ensure that original content is never touched
  849. * [Fix] Fix SPOOF_REPLYTO rule
  850. * [Fix] Ignore Rmilter added Received
  851. * [Fix] More fixes for hashed email dnsbls
  852. * [Fix] Plug memory leak in chartable module
  853. * [WebUI] Display multiple alerts at once
  854. 1.5.5:
  855. * [CritFix] Fix classifier learning with Redis backend
  856. * [CritFix] Fix issue when parsing encoded rfc822/messages
  857. * [Feature] Add escaped version of lua_ucl import
  858. * [Feature] Add task:headers_foreach function
  859. * [Feature] Allow to process filenames from content type
  860. * [Feature] Allow to query hashed emails
  861. * [Feature] Ignore bayes with mostly metatokens or with too few text
  862. * [Feature] Probabilistically skip metatokens
  863. * [Feature] Retrieve all virus names from SAVAPI
  864. * [Feature] Rework classifiers lua metatokens
  865. * [Feature] Store headers order
  866. * [Feature] Store text tokens inside bayes tokens
  867. * [Feature] Use cached shingles keys
  868. * [Fix] Add missing score normalisation for HFILTER_URL_ONLY
  869. * [Fix] Avoid lookup in absent hash
  870. * [Fix] Check return values from Lua functions called from C
  871. * [Fix] Do not count sending and loading time in rspamc
  872. * [Fix] Escape json strings for controller rejplies from Lua
  873. * [Fix] Fix archive scans for savapi
  874. * [Fix] Fix domain_only emails RBL
  875. * [Fix] Fix ip_score map configuration
  876. * [Fix] Fix JSON output for history_redis
  877. * [Fix] Fix one character length substrings search
  878. * [Fix] Fix parsing of non-RFC compatible Exim received
  879. * [Fix] Fix parsing of options for workers with the same type
  880. * [Fix] Fix processing of small tokens vectors
  881. * [Fix] Fix rfc2047 tokenization
  882. * [Fix] Fix typo
  883. * [Fix] More fixes for inplace decoding
  884. * [Fix] Try to avoid modifications of the original data
  885. * [Fix] URL redirector: Fix call to is_redirector
  886. * [Rework] Set token data as uint64_t instead of chars array
  887. * [WebUI] Check if neighbours' history backend versions match
  888. * [WebUI] Disable phrase connectors replacement in history filtering
  889. * [WebUI] Disable phrase connectors replacement in symbols filtering
  890. * [WebUI] Do not hide messages with bad subject, just replace it with '???'
  891. * [WebUI] Fix error message
  892. * [WebUI] Fix history v2 display
  893. * [WebUI] Fix legacy history
  894. * [WebUI] history: break To address lists on commas
  895. * [WebUI] Increase default timeout to 20 seconds
  896. * [WebUI] Save some history table space
  897. 1.5.4:
  898. * [Conf] Add history_redis default configuration
  899. * [Feature] Add spoofed rules
  900. * [Feature] Add URL_IN_SUBJECT rule
  901. * [Feature] Allow to get task's subject
  902. * [Feature] Allow to specify maximum number of shots for symbols
  903. * [Feature] Distinguish URLs found in Subject
  904. * [Feature] Memoize LPEG grammars
  905. * [Feature] Parse else parts in SA rules
  906. * [Feature] Process subject for mixed characters
  907. * [Feature] Resolve url chains in url_redirector module
  908. * [Feature] Stat greylisted messages as greylisted not soft-rejected
  909. * [Feature] Support checking for redirector in Lua SURBL
  910. * [Feature] Support tag_exists SA function
  911. * [Feature] Work with broken rfc2047 tokens
  912. * [Fix] Check all watcher's dependencies
  913. * [Fix] Do not compile hyperscan with no SSSE3 support
  914. * [Fix] Do not crash if cannot decode qp encoded part
  915. * [Fix] Fix dependencies of DKIM when multiple signatures are found
  916. * [Fix] Fix lists in whitelist plugin
  917. * [Fix] Fix one-shot symbols weight calculations
  918. * [Fix] Fix options and shots match
  919. * [Fix] Fix order of symbol options
  920. * [Fix] Fix parsing of dot at the end of the address
  921. * [Fix] Fix parsing of lua table arguments
  922. * [Fix] Fix processing of subject words
  923. * [Fix] Fix string split memoization
  924. * [Fix] Fix templates grammar usage
  925. * [Fix] Fix various issues related to Lua stack manipulation
  926. * [Fix] Force actions: Use postfilter if we have honor_action / require_action
  927. * [Fix] Further fixes to avoid PHISHING FP
  928. * [Fix] Preserve order of options in symbols
  929. * [Fix] Rspamadm grep: deal with unusually-formatted logs
  930. * [Fix] Use hostname suffix when dealing with history
  931. * [Rework] Remove outdated SA rules
  932. * [WebUI] Add flexible columns
  933. * [WebUI] Add footable
  934. * [WebUI] Add sender, recipients and subject columns
  935. * [WebUI] Allow message-id break
  936. * [WebUI] Fix history clustering
  937. * [WebUI] Fix history display
  938. * [WebUI] Fix sorting
  939. * [WebUI] Humanize sizes
  940. * [WebUI] Initial move towards footable
  941. * [WebUI] Remove datatables
  942. * [WebUI] Replace `.values` method with `.map`
  943. * [WebUI] Rework v2 symbols display
  944. * [WebUI] Try to normalize frequencies
  945. * [WebUI] Unbreak WebUI
  946. * [WebUI] Use Footable to draw Throughput summary table
  947. 1.5.3:
  948. * [Conf] Add composite for hacked wordpress phishing
  949. * [CritFix] Fix base64 decoding when there are unparseable characters
  950. * [Feature] Additional symbol metadata in metadata exporter
  951. * [Feature] Add method to get protocol reply from Lua
  952. * [Feature] Add symbols when tagged rcpt/sender are normalised
  953. * [Feature] Add task:get_symbols_all() function
  954. * [Feature] Allow multiple formats of DKIM signing key
  955. * [Feature] Allow to cache and use flexible protocol reply
  956. * [Feature] Allow to set one_shot flag from register_symbol
  957. * [Feature] Allow to skip certain types of hashes when learning fuzzy
  958. * [Feature] Cache and insert scan time into the protocol
  959. * [Feature] Detect newlines in rspamc --mime
  960. * [Feature] DKIM signing: support use of maps
  961. * [Feature] Greylist: Support excluding low-scoring messages from greylisting
  962. * [Feature] Implement lua history in controller
  963. * [Feature] Implement redis history querying
  964. * [Feature] Preliminary implementation of redis history plugin
  965. * [Feature] Support using request headers in settings
  966. * [Fix] Change default template to deal with non-ASCII characters
  967. * [Fix] Deal with lists of maps in whitelist module
  968. * [Fix] DKIM signing: use domain-specific signing key
  969. * [Fix] Do not reallocate completed zstd buffer
  970. * [Fix] Do not use local_addrs in proxy
  971. * [Fix] Fix crash when resolver is undefined
  972. * [Fix] Fix double free when closing lua_tcp connections
  973. * [Fix] Fix for lua 5.3
  974. * [Fix] Fix freeing of arrays iterators
  975. * [Fix] Fix issue with task:get_symbol and symbols with no metric
  976. * [Fix] Fix log line duplication in `rspamadm grep`
  977. * [Fix] Fix memory corruption on termination
  978. * [Fix] Fix out-of-bound access in base64 decode
  979. * [Fix] Fix ratelimit + greylisting
  980. * [Fix] Fix subject rewriting
  981. * [Fix] Fix task:set_recipients function
  982. * [Fix] Fix URI_COUNT_ODD rule
  983. * [Fix] Follow the traditional symbols conventions in RCPT_COUNT rule
  984. * [Fix] Greylist: Suppress greylist action for whitelisted hosts too
  985. * [Fix] Metadata exporter: use rule-specific settings for emails
  986. * [Fix] Properly set missing fields in exporter
  987. * [Fix] Proxy: max_retries option
  988. * [Fix] RCPT_COUNT fixes
  989. * [Fix] Rework HAS_X_PRIO rule to match symbols conventions
  990. * [Fix] Update issues in ac-trie
  991. * [Fix] Use optimised base64 decoding in DKIM
  992. * [WebUI] Add preliminary v2 history parser
  993. * [WebUI] Allow different history parsers
  994. * [WebUI] Display symbols
  995. * [WebUI] Rework history v2 function
  996. 1.5.2:
  997. * [Conf] Add default config for spamassasssin plugin
  998. * [Conf] Add default configuration for antivirus module
  999. * [Conf] Add dkim signing docs
  1000. * [Conf] Add mx_check default config
  1001. * [Conf] Add replies config
  1002. * [Conf] Add trie default config
  1003. * [Feature] Add heuristic to find text parts in files
  1004. * [Feature] Add rule to detect broken content type
  1005. * [Feature] Allow to extract CTE in Lua API
  1006. * [Feature] Allow to set from address for a lua_task
  1007. * [Feature] Allow to set recipients of a task from Lua
  1008. * [Feature] Enchance text_part:get_content method
  1009. * [Feature] Remove + aliases from emails
  1010. * [Feature] Support rmilter block and dkim signature in CGP helper
  1011. * [Feature] Support running event loop from Lua
  1012. * [Fix] Antivirus: use scanner-specific redis prefix
  1013. * [Fix] Couple of fixes for DKIM signing module
  1014. * [Fix] Distinguish missing and broken mandatory headers
  1015. * [Fix] Do more heuristical detection for missing CTE
  1016. * [Fix] Do not resort cache on each check
  1017. * [Fix] Fix CGP escaping
  1018. * [Fix] Fix MISSING_MIME_VERSION rule for plain messages
  1019. * [Fix] Fix parsing of cte in expressions
  1020. * [Fix] Fix partial matches in rspamadm grep
  1021. * [Fix] Fix setting class on style field
  1022. * [WebUI] Auto-switch Throughput units to `msg/min` for very low rate
  1023. * [WebUI] Update D3Evolution to 0.0.2
  1024. 1.5.1:
  1025. * [CritFix] Fix processing of stop_patterns with `\0` character
  1026. * [CritFix] Fix setting of raw key for signing
  1027. * [Fix] Fix lua exports from plugins during reload
  1028. * [Fix] Fix prefilters action scores
  1029. * [Fix] Fix symbols processing order
  1030. * [Minor] Help cmake find gthread
  1031. * [Minor] Some cmake fixes
  1032. 1.5.0:
  1033. * [Conf] Add configurations for asn, clickhouse and dcc
  1034. * [Conf] Add default config for url redirector plugin
  1035. * [Conf] Add the default config for greylist module
  1036. * [Conf] Allow to edit all local maps from WebUI by default
  1037. * [CritFix] Deal with absent headers in DKIM
  1038. * [CritFix] Do not trust remote shingles count
  1039. * [CritFix] Fix bad memory leak in TLS certificates validation
  1040. * [CritFix] Fix critical memory issues with radix maps
  1041. * [CritFix] Fix descriptors leak on reload
  1042. * [CritFix] Fix headers selection in DKIM verification
  1043. * [CritFix] Fix parsing of boundaries that end with `--`
  1044. * [CritFix] Repair PTR_ARRAY_FOREACH macro
  1045. * [Feature] Add CORS support to the controller
  1046. * [Feature] Add FROM_NAME_EXCESS_SPACE rule
  1047. * [Feature] Add REPLYTO_EMAIL_HAS_TITLE rule
  1048. * [Feature] Add `caseless_hash` method to `lua_util`
  1049. * [Feature] Add `rip` keyword to ratelimit module
  1050. * [Feature] Add a simple benchmark for content type parsing
  1051. * [Feature] Add boundaries parsing in content type
  1052. * [Feature] Add charset detection for text parts
  1053. * [Feature] Add content disposition parser
  1054. * [Feature] Add fallback if too many updates are failing
  1055. * [Feature] Add function to convert struct tm to time using timezone
  1056. * [Feature] Add function to normalize HTTP paths
  1057. * [Feature] Add fuzzy collection plugin
  1058. * [Feature] Add fuzzy logic for images
  1059. * [Feature] Add gmime parser to mime_tool
  1060. * [Feature] Add heuristic to detect broken messages
  1061. * [Feature] Add heuristic to find displayed URLs
  1062. * [Feature] Add heuristic to process broken email addresses
  1063. * [Feature] Add images normalization
  1064. * [Feature] Add mechanism for disabling composites (Fixes #1270)
  1065. * [Feature] Add method to create regexp from a glob pattern
  1066. * [Feature] Add mime encoding manipulation routines
  1067. * [Feature] Add mime tool to explore messages
  1068. * [Feature] Add more meta tokens from received headers
  1069. * [Feature] Add neighbours option to support Rspamd cluster in WebUI
  1070. * [Feature] Add new function to parse mime addresses
  1071. * [Feature] Add new methods for lua_tcp
  1072. * [Feature] Add own headers decoding routine
  1073. * [Feature] Add own routine to generate a message id
  1074. * [Feature] Add parser for SMTP date
  1075. * [Feature] Add per-task lua cache to reuse 'heavy' objects
  1076. * [Feature] Add plugins list path in WebUI
  1077. * [Feature] Add preliminary multipart support
  1078. * [Feature] Add preliminary version of DKIM signing module
  1079. * [Feature] Add profiling support in client output
  1080. * [Feature] Add rfc2047 grammar
  1081. * [Feature] Add rfc2047 variant for QP decoding
  1082. * [Feature] Add rmilter_headers module (Fixes #1227)
  1083. * [Feature] Add sse42 version of base64 decoding
  1084. * [Feature] Add ssse3 and avx2 base64 decoders
  1085. * [Feature] Add support of libgd
  1086. * [Feature] Add the preliminary version of redirects resolver in Lua
  1087. * [Feature] Add ucl_object_iterate_full function
  1088. * [Feature] Add url encoding function
  1089. * [Feature] Allow SOA requests in lua dns
  1090. * [Feature] Allow custom parse types in lua ucl
  1091. * [Feature] Allow plugins to register webui handlers
  1092. * [Feature] Allow to add options explicitly to symbols
  1093. * [Feature] Allow to call a callback when symbol frequency is on peak
  1094. * [Feature] Allow to call redirector script from SURBL
  1095. * [Feature] Allow to create variable length dkim keys
  1096. * [Feature] Allow to have module specific options for Redis in plugins
  1097. * [Feature] Allow to pass sign key directly from Lua
  1098. * [Feature] Allow to register configuration docs from Lua API
  1099. * [Feature] Allow to return options as a table
  1100. * [Feature] Allow to set peak callbacks from Lua
  1101. * [Feature] Allow to specify custom method for a message
  1102. * [Feature] Allow to store dkim keys in Redis
  1103. * [Feature] Allow to store messages in files
  1104. * [Feature] Apply DCT using AAN for fuzzy signature
  1105. * [Feature] Avira SAVAPI support
  1106. * [Feature] Cache and simplify DCT and jpeg decode
  1107. * [Feature] Cache libicu converters
  1108. * [Feature] Detect URLs with suspicious omographs
  1109. * [Feature] Do not increase score for duplicate options
  1110. * [Feature] Do not trust CTE, check base64 and qp strictly
  1111. * [Feature] Dynamic reputation in URL reputation plugin
  1112. * [Feature] Extend redis lock when learning spawned
  1113. * [Feature] Filter non-utf chars from all decoded headers
  1114. * [Feature] Fix phishing detection for IDNA urls
  1115. * [Feature] Ignore bad symbols on base64 decoding
  1116. * [Feature] Ignore too wide elements in SPF
  1117. * [Feature] Implement fuzzy collection mode
  1118. * [Feature] Implement helo maps in multimap
  1119. * [Feature] Implement human readable buckets configuration
  1120. * [Feature] Implement min-hash shingles for DCT data from images
  1121. * [Feature] Implement new algorithm for fuzzy hashes of images
  1122. * [Feature] Implement new unicode normalizer
  1123. * [Feature] Implement quoted printable decoding
  1124. * [Feature] Implement received headers flags
  1125. * [Feature] Implement rspamdgrep tool
  1126. * [Feature] Implement sane checksum for config file
  1127. * [Feature] Implement url tags concept
  1128. * [Feature] Improve detection of omographs using libicu
  1129. * [Feature] Improve url redirector module
  1130. * [Feature] Multimap: Received header processing
  1131. * [Feature] Multiple improvements in the maps
  1132. * [Feature] New URL filters in multimap
  1133. * [Feature] Plugin to force actions on selected symbols
  1134. * [Feature] RBL module: support hashing for emails and helo RBL
  1135. * [Feature] Reuse URL tags in SURBL module
  1136. * [Feature] Rework RRD ds count, add conversion path
  1137. * [Feature] Rework surbl module to avoid extra redirector calls
  1138. * [Feature] Send config id to the WebUI
  1139. * [Feature] Simplify HTTPCrypt client support
  1140. * [Feature] Skip processing for large images
  1141. * [Feature] Start collection only mode implementation for fuzzy storage
  1142. * [Feature] Start import of the optimized base64 decode
  1143. * [Feature] Store all received headers in lua
  1144. * [Feature] Store relational order of all headers in a message
  1145. * [Feature] Support DKIM signing in Lua plugins
  1146. * [Feature] Support HTTPCrypt client in lua_http
  1147. * [Feature] Support setting SMTP message in multimap
  1148. * [Feature] Support setting metric subject from Lua
  1149. * [Feature] Support setting subject in force actions module
  1150. * [Feature] Treat v6 mapped addresses as v4 addresses
  1151. * [Feature] URL reputation plugin
  1152. * [Feature] Use Redis instead of memcached in URLs redirector
  1153. * [Feature] Use Rspamd rfc2047 decoder instead of gmime one
  1154. * [Feature] Use a different normalization for fuzzy images
  1155. * [Feature] Use normalized images in fuzzy hashes
  1156. * [Feature] Use own code for parsing of date
  1157. * [Feature] Use shingles for images fuzzying
  1158. * [Feature] Use t1ha for hashes, allow inlining
  1159. * [Feature] Use t1ha instead of metrohash and xxhash32
  1160. * [Feature] Various new features in metadata exporter module
  1161. * [Feature] rmilter_headers: authentication-results (#78)
  1162. * [Fix] Add additional check to mark redis connection inactive
  1163. * [Fix] Add packed attribute for protocol structure
  1164. * [Fix] Adopt OMOGRAPH_URL rule
  1165. * [Fix] Allow static maps
  1166. * [Fix] Allow to disable classifiers checks using settings and conditions
  1167. * [Fix] Another try to fix 0 length maps
  1168. * [Fix] Another try to fix corruption during maps reload
  1169. * [Fix] Another try to fix descriptors leak
  1170. * [Fix] Another try to fix reload and logger
  1171. * [Fix] Antivirus module: register virtual symbols for patterns
  1172. * [Fix] Avoid extensive reallocs
  1173. * [Fix] Avoid mempool leak in SA plugin on reload
  1174. * [Fix] Avoid race condition on saving cache and reload
  1175. * [Fix] Avoid reusing g_error (Fixes #1262)
  1176. * [Fix] Break pool connection on fatal redis errors
  1177. * [Fix] Check for NaN properly
  1178. * [Fix] Couple of fixes for date parsing
  1179. * [Fix] Date header timezone adjustments (#1279)
  1180. * [Fix] Deal with EOF properly
  1181. * [Fix] Decode filename in content disposition
  1182. * [Fix] Disable fuzzy images by default
  1183. * [Fix] Disable zero-copy mode for text parts to avoid crashes
  1184. * [Fix] Do not destroy session when not all finish scripts are done
  1185. * [Fix] Do not greyscale images
  1186. * [Fix] Do not leave parent-less workers processes on fatal errors
  1187. * [Fix] Do not lowercase Content-Disposition to perform decoding
  1188. * [Fix] Do not penalize characters just after numeric prefix
  1189. * [Fix] Do not refork workers that are intended to die
  1190. * [Fix] Do not set pre-result and update records for no `Queue-ID` messages
  1191. * [Fix] Do not skip post-filters when pre-filters have set some results
  1192. * [Fix] Do not stop symbols planning if async events are pending
  1193. * [Fix] Do not try to set keys for unencrypted requests in proxy
  1194. * [Fix] Encode URLs according to rfc3986
  1195. * [Fix] Encode URLs before sending them to the protocol
  1196. * [Fix] Filter bad characters from message id
  1197. * [Fix] Fix CTE detection heuristic
  1198. * [Fix] Fix Content-Type in HTTP requests
  1199. * [Fix] Fix IDN eslds phishing checks
  1200. * [Fix] Fix adding maps from config in Lua
  1201. * [Fix] Fix another reload memory issue
  1202. * [Fix] Fix argument returned on redis backend errors
  1203. * [Fix] Fix assertion in graph handling
  1204. * [Fix] Fix body trie matching
  1205. * [Fix] Fix build
  1206. * [Fix] Fix byte array expansion during toutf8 conversion
  1207. * [Fix] Fix charset normalisation
  1208. * [Fix] Fix checking of DKIM bodies that needs just `\n` to be added
  1209. * [Fix] Fix couple of cornercases with email addresses
  1210. * [Fix] Fix couple of issues
  1211. * [Fix] Fix dependencies tracking for callback symbols
  1212. * [Fix] Fix detection of jpeg size
  1213. * [Fix] Fix errors handling in fuzzy backend initialization
  1214. * [Fix] Fix fuzzy hashes count
  1215. * [Fix] Fix globbing and convert lists to arrays in fuzzy_check
  1216. * [Fix] Fix heuristical CTE detection for QP encoding
  1217. * [Fix] Fix ignoring of bad text parts
  1218. * [Fix] Fix indexes in array access, interleave loop
  1219. * [Fix] Fix int64 -> double conversion
  1220. * [Fix] Fix invalid memory access on reload
  1221. * [Fix] Fix issues with empty updates
  1222. * [Fix] Fix issues with quoted-printable encoding
  1223. * [Fix] Fix keys names
  1224. * [Fix] Fix lots of issues in mime parser code
  1225. * [Fix] Fix lua maps load
  1226. * [Fix] Fix macro name
  1227. * [Fix] Fix mas group score calculations
  1228. * [Fix] Fix matching of the same patterns from different tries
  1229. * [Fix] Fix memory corruprtion and leak
  1230. * [Fix] Fix memory leak in HTTP maps
  1231. * [Fix] Fix memory leak in expression destroying
  1232. * [Fix] Fix memory leak in parsing of mime names
  1233. * [Fix] Fix memory leak in safe ucl iterators
  1234. * [Fix] Fix memory leak on reload in plugins
  1235. * [Fix] Fix modules reconfigure on reload
  1236. * [Fix] Fix monitored setup fro URLBLs with IP addresses
  1237. * [Fix] Fix name of var
  1238. * [Fix] Fix new rrd updates
  1239. * [Fix] Fix out of bounds access
  1240. * [Fix] Fix parsing messages with no body
  1241. * [Fix] Fix parsing of '=' character in headers
  1242. * [Fix] Fix parsing of messages with no content type
  1243. * [Fix] Fix plugins callbacks in webui
  1244. * [Fix] Fix possible memory corruption in redis pool
  1245. * [Fix] Fix probability calculations for fuzzy redis backend
  1246. * [Fix] Fix processing errors in lua_tcp
  1247. * [Fix] Fix processing of emails with name only
  1248. * [Fix] Fix processing of non-multipart messages
  1249. * [Fix] Fix processing of parts with no valid content type
  1250. * [Fix] Fix race condition in SIGUSR2 handler
  1251. * [Fix] Fix redis options parsing when no redis servers are defined
  1252. * [Fix] Fix reload and hyperscan ready event
  1253. * [Fix] Fix reload memory issue
  1254. * [Fix] Fix rra_ptr conversion
  1255. * [Fix] Fix rrd file conversion
  1256. * [Fix] Fix setting of content-type attributes
  1257. * [Fix] Fix signing headers creation in DKIM
  1258. * [Fix] Fix stddev calculations
  1259. * [Fix] Fix surbl plugin to work with composite maps
  1260. * [Fix] Fix timezones parsing
  1261. * [Fix] Fix tokens usage
  1262. * [Fix] Fix urls and emails hashes
  1263. * [Fix] Fix usage of unsafe ucl iterators
  1264. * [Fix] Fix work with broken utf8 tokens
  1265. * [Fix] Fix writing of user to roll history
  1266. * [Fix] Forgotten worker
  1267. * [Fix] Further memory leaks fixes
  1268. * [Fix] Ignore lua metatokens in bayes for now
  1269. * [Fix] Improve OMOGRAPH_URL rule
  1270. * [Fix] Lua IP from string should be invalid if parsing failed
  1271. * [Fix] Miltiple fixes to new lua_tcp, add debugging
  1272. * [Fix] More fixes for iterators cleanup
  1273. * [Fix] More fixes to logger initialization
  1274. * [Fix] More heuristic fixes for phishing detection
  1275. * [Fix] More leaks eliminated
  1276. * [Fix] More leaks...
  1277. * [Fix] More random fixes for reload...
  1278. * [Fix] Multimap: Fixes for email filters
  1279. * [Fix] Multiple fixes for fann module
  1280. * [Fix] Multiple memory corruption fixes
  1281. * [Fix] Normalize path in HTTP router
  1282. * [Fix] Plug memory leak
  1283. * [Fix] Plug memory leak in adding radix trees
  1284. * [Fix] Plug memory leak in configuration parser
  1285. * [Fix] Plug memory leak in expressions parsing during reload
  1286. * [Fix] Plug memory leak in learning fuzzy storage
  1287. * [Fix] Plug memory leak in lua_tcp
  1288. * [Fix] Plug reload leaks
  1289. * [Fix] Plug termination memory leaks
  1290. * [Fix] Really increase lock lifetime
  1291. * [Fix] Replies module: fix symbol weight
  1292. * [Fix] Restore content type params related functions
  1293. * [Fix] Set task's subject from mime subject
  1294. * [Fix] Sigh, one more reload leak
  1295. * [Fix] Simplify images shingles
  1296. * [Fix] Some more memory issues are fixed
  1297. * [Fix] Stop hardcoding of lua in C
  1298. * [Fix] Stop processing of bad parts as text parts
  1299. * [Fix] Strictly filter bad characters when emittin json
  1300. * [Fix] Strings returned from lua are ephemeral
  1301. * [Fix] Support unix sockets for lua redis
  1302. * [Fix] Try to fix issues with reloading config
  1303. * [Fix] Try to fix race condition in redis_pool
  1304. * [Fix] Use checksum to avoid intersection between different ANNs
  1305. * [Fix] Use rspamd hashes in embedded ucl
  1306. * [Fix] Use sane default rewrite subject (*** SPAM *** %s)
  1307. * [Fix] Various collection mode fixes
  1308. * [Fix] Various fixes to mime parser
  1309. * [Fix] Various reload leak fixing
  1310. * [Fix] Whitelist certain extensions from archive checks
  1311. * [Rework] Add preliminary implementation of the mime parser
  1312. * [Rework] Adopt code for the new options
  1313. * [Rework] Change logger setup interface
  1314. * [Rework] Composite configuration (#1270)
  1315. * [Rework] Finally remove gmime dependency from Rspamd
  1316. * [Rework] Further fixes to symbols frequencies
  1317. * [Rework] Implement content type parser for mime
  1318. * [Rework] Kill all InternetAddressList usages
  1319. * [Rework] Multiple fixes for symbols cache statistics
  1320. * [Rework] Refactor struct names
  1321. * [Rework] Rework images fuzzy hashes algorithm
  1322. * [Rework] Rework lua_tcp to allow TCP dialog
  1323. * [Rework] Start massive rework to get rid of gmime
  1324. * [Rework] Start new approach for multiparts parsing
  1325. * [Rework] Start rework of mime addresses
  1326. * [Rework] Start rework of symbols cache updates
  1327. * [Rework] Start switching to libicu
  1328. * [Rework] Use a special structure for stats tokens
  1329. * [Rework] Use hash tables for symbols options
  1330. * [Rework] Use libicu instead of iconv for conversions
  1331. * [Rework] Use new scheme to parse mime parts
  1332. * [WebUI] Add Access-Control-Allow-Origin for cluster management
  1333. * [WebUI] Add Throughput graph autorefreshing (#820)
  1334. * [WebUI] Add Visibility.js library
  1335. * [WebUI] Add basic cluster support to Throughput tab
  1336. * [WebUI] Add graph legend entries for new DSes
  1337. * [WebUI] Add graph tab
  1338. * [WebUI] Add neighbours RRD data consolidation
  1339. * [WebUI] Add preliminary save symbols clustering
  1340. * [WebUI] Add server selector to navbar
  1341. * [WebUI] Add soft reject to auth stats
  1342. * [WebUI] Add summary to the Throughput tab
  1343. * [WebUI] Allow to save maps on the cluster
  1344. * [WebUI] Avoid extra graph redraw and alerts glitching
  1345. * [WebUI] Be more generous with AJAX timeout
  1346. * [WebUI] Disable error ring loading in `read only` mode
  1347. * [WebUI] Enclose table header cells with `tr`s
  1348. * [WebUI] Finish interface rework
  1349. * [WebUI] Fix RRD summary pie chart position
  1350. * [WebUI] Fix `All SERVERS` graph fot just one available server
  1351. * [WebUI] Fix case when no cluster is defined
  1352. * [WebUI] Fix compatibility with non-ES6 compliant browsers
  1353. * [WebUI] Fix config ID
  1354. * [WebUI] Fix configuration page partially
  1355. * [WebUI] Fix disabled state
  1356. * [WebUI] Fix graph dataset selector initialization
  1357. * [WebUI] Fix graph selectors state resetting
  1358. * [WebUI] Fix mouse events on throughput summary table area
  1359. * [WebUI] Fix multiple JS issues
  1360. * [WebUI] Fix pie chart displaying
  1361. * [WebUI] Fix read only
  1362. * [WebUI] Fix read only2
  1363. * [WebUI] Fix retarded datatables
  1364. * [WebUI] Fix soft reject in pie chart
  1365. * [WebUI] Fix stat widgets timers multiplication on `Refresh` click
  1366. * [WebUI] Fix symbols config
  1367. * [WebUI] Fix various errors with login form
  1368. * [WebUI] Further fixes
  1369. * [WebUI] Hide learning tab in read-only mode
  1370. * [WebUI] Initial clusters support
  1371. * [WebUI] Make legend entry colours more contrast
  1372. * [WebUI] Move configuration tab to a separate module
  1373. * [WebUI] Move history tab
  1374. * [WebUI] Move symbols config as well
  1375. * [WebUI] New sec to time function
  1376. * [WebUI] Prevent multiple clicks on `Refresh`
  1377. * [WebUI] RRD summary: Hide inner labels of tiny pie sectors
  1378. * [WebUI] RRD summary: Respect undefined values
  1379. * [WebUI] Reduce font size of graph's legend
  1380. * [WebUI] Remove orphaned font duplicates
  1381. * [WebUI] Remove unused code
  1382. * [WebUI] Replace spinner with animated glyphicon
  1383. * [WebUI] Reset refresh timer on server switching
  1384. * [WebUI] Rework interface to use requirejs
  1385. * [WebUI] Rework neighbours query function
  1386. * [WebUI] Separate attributes by space
  1387. * [WebUI] Set focus to password field (#1230)
  1388. * [WebUI] Simplify neighbours table populating
  1389. * [WebUI] Start rework of modules
  1390. * [WebUI] Stop stats refreshing if the page is hidden
  1391. * [WebUI] Turn d3pie's stuff into a reusable function,
  1392. * [WebUI] Unify send data functions
  1393. * [WebUI] Update D3Evolution to 0.0.1
  1394. * [WebUI] Update d3.js
  1395. * [WebUI] Update datatables to work with the requirejs
  1396. * [WebUI] Use unified tab click event handler,
  1397. * [WebUI] clusters for the chart
  1398. * [WebUI] fix uptime
  1399. 1.4.2:
  1400. * [CritFix] Deal with absent headers in DKIM
  1401. * [CritFix] Do not trust remote shingles count
  1402. * [CritFix] Fix headers selection in DKIM verification
  1403. * [Feature] Add EXT_CSS rule
  1404. * [Feature] Add toggle for disabling SURBLs
  1405. * [Feature] Extend redis lock when learning spawned
  1406. * [Feature] Parse <link> HTML tags
  1407. * [Fix] Avoid reusing g_error (Fixes #1262)
  1408. * [Fix] Do not reset loaded ANN when learning is requested
  1409. * [Fix] Fix another issue with external deps in SA
  1410. * [Fix] Fix body trie matching
  1411. * [Fix] Fix checking of DKIM bodies that needs just `\n` to be added
  1412. * [Fix] Fix fuzzy hashes count
  1413. * [Fix] Fix keys names
  1414. * [Fix] Fix length calculations for url encoded urls
  1415. * [Fix] Fix matching of the same patterns from different tries
  1416. * [Fix] Fix name of var
  1417. * [Fix] Fix parsing of URLs with spaces and other bad chars
  1418. * [Fix] Fix probability calculations for fuzzy redis backend
  1419. * [Fix] Fix signing headers creation in DKIM
  1420. * [Fix] Plug memory leak
  1421. * [Fix] Really fix chained SA dependencies
  1422. * [Fix] Really increase lock lifetime
  1423. * [Fix] Use checksum to avoid intersection between different ANNs
  1424. * [Fix] Use rspamd hashes in embedded ucl
  1425. * [Fix] Yet another change for testing external deps
  1426. 1.4.1:
  1427. * [Feature] ASN support in Clickhouse module
  1428. * [Feature] Add clickhouse plugin
  1429. * [Feature] Add generic tool to add universal maps for lua modules
  1430. * [Feature] Add logger.debugm to debug lua modules
  1431. * [Feature] Allow to register metrics symbols using register_symbol
  1432. * [Feature] Allow to specify prefix for fann_redis
  1433. * [Feature] Clickhouse: support different masks for IPv4/IPv6
  1434. * [Feature] Support forcing action in antivirus plugin
  1435. * [Fix] Add handling of regexp maps
  1436. * [Fix] Allow backslashes in http urls
  1437. * [Fix] Avoid mapping of empty files
  1438. * [Fix] Do not load tld file to speed up rspamadm
  1439. * [Fix] Do not resolve numeric IP addresses due to ipv6 insanity
  1440. * [Fix] Filter incorrect training data
  1441. * [Fix] Fix Fuzzyconvert tool when password or DB is given
  1442. * [Fix] Fix build with custom glib/gmime
  1443. * [Fix] Fix converting of learn count from sqlite to redis
  1444. * [Fix] Fix crashes with invalid received and task:set_from_ip
  1445. * [Fix] Fix external dependencies for SA module
  1446. * [Fix] Fix fann_redis when number of scores has been changed
  1447. * [Fix] Fix hyperscan usage for non compatible platforms
  1448. * [Fix] Fix loading of maps from UCL objects
  1449. * [Fix] Fix memory leak for task-less redis requests
  1450. * [Fix] Fix mid module with new maps syntax
  1451. * [Fix] Fix parsing of URLs with username
  1452. * [Fix] Fix re cache initialisation
  1453. * [Fix] Fix replacements to sanitize '%' character
  1454. * [Fix] Fix set and regexp like static maps
  1455. * [Fix] Fix some issues in redis settings
  1456. * [Fix] Fix static IP maps
  1457. * [Fix] Fix total learns counter for redis stats
  1458. * [Fix] Fix usage of config during reload
  1459. * [Fix] Fix various warnings and issues
  1460. * [Fix] Invalidate ANN if training data is incorrect
  1461. * [Fix] Miltiple fixes to fann_redis module
  1462. * [Fix] More fixes for URLs with backslashes
  1463. * [Fix] Properly get options for ip_score module
  1464. * [Fix] Relax requirements for Received as gmail cannot RFC
  1465. * [Fix] Remove or fix hyperscan incompatible regexps
  1466. * [Fix] Settings: correctly read redis config
  1467. * [Rework] Rework lua logger interface slightly
  1468. * [Rework] Use new maps add function
  1469. 1.4.0:
  1470. * [CritFix] Add guards for inactive redis connections
  1471. * [CritFix] Another fix for proxying files using rspamd_proxy
  1472. * [CritFix] Cleanup inactive redis connections
  1473. * [CritFix] Do not sometimes try to exec posfilters before classification
  1474. * [CritFix] Fix application of IPv6 mask
  1475. * [CritFix] Fix chunked encoding when reading messages
  1476. * [CritFix] Fix file mode for rspamd_proxy
  1477. * [CritFix] Fix hyperscan compilation on regexp change
  1478. * [CritFix] Fix issue with finding of end of lines pointers
  1479. * [CritFix] Fix iteration over headers array (introduced in 1.4)
  1480. * [CritFix] Fix processing of learned tokens count for redis backend
  1481. * [CritFix] Fix race condition in checking of cached maps
  1482. * [CritFix] Fix workers scripts by sharing workers configs
  1483. * [CritFix] Introduce raw content to text parts
  1484. * [CritFix] Plug memory leak and potential memory corruption
  1485. * [Feature] Adaptive ratelimits
  1486. * [Feature] Add ASN -> rbldnsd script for asn.rspamd.com
  1487. * [Feature] Add DMARC_NA symbol
  1488. * [Feature] Add F-Prot support to antivirus module
  1489. * [Feature] Add HTTP backend to metadata exporter
  1490. * [Feature] Add Lua API module for monitored objects
  1491. * [Feature] Add R_DKIM_NA / R_SPF_NA / AUTH_NA symbols
  1492. * [Feature] Add R_DKIM_PERMFAIL symbol
  1493. * [Feature] Add R_SPF_PERMFAIL symbol
  1494. * [Feature] Add Sophos antivirus support
  1495. * [Feature] Add ZSTD compression to Lua API
  1496. * [Feature] Add `mid` Lua module
  1497. * [Feature] Add `one_param` flag for metric symbols
  1498. * [Feature] Add a generic lua classifier
  1499. * [Feature] Add a very basic interface to access workers data from on_load
  1500. * [Feature] Add ability to delete a hash by its data to fuzzy_check plugin
  1501. * [Feature] Add ability to enable/disable symbols via dynamic_conf
  1502. * [Feature] Add ability to lookup settings by key
  1503. * [Feature] Add common way to disable Lua modules
  1504. * [Feature] Add compression support to rspamd client
  1505. * [Feature] Add condition to do antiviral check
  1506. * [Feature] Add configuration for lua classifiers
  1507. * [Feature] Add configuration knobs for the errors circular buffer
  1508. * [Feature] Add decompression support in rspamd client
  1509. * [Feature] Add errors exporter to the controller
  1510. * [Feature] Add expected value for monitored DNS resources
  1511. * [Feature] Add exporter from error ringbuf to ucl
  1512. * [Feature] Add extended version for fann creation function
  1513. * [Feature] Add ffi friendly version of process_regexp function
  1514. * [Feature] Add frequency and time display to webui
  1515. * [Feature] Add fuzzy_delhash command to rspamc client
  1516. * [Feature] Add implementation of redis connections pool
  1517. * [Feature] Add latency and offline time monitoring
  1518. * [Feature] Add learning support for lua classifiers
  1519. * [Feature] Add max-size and timeout options to CGP helper
  1520. * [Feature] Add method to enable/disable symbols in config
  1521. * [Feature] Add methods to get metric's actions and symbols from Lua
  1522. * [Feature] Add mmap support to lua_text
  1523. * [Feature] Add monitored object for surbl plugin
  1524. * [Feature] Add more exceptions to surbl whitelist
  1525. * [Feature] Add more meta-tokens to bayes
  1526. * [Feature] Add neural net classifier to fann_scores module
  1527. * [Feature] Add neural net serialization/deserialization
  1528. * [Feature] Add new dynamic conf module
  1529. * [Feature] Add periodic events support for lua_config
  1530. * [Feature] Add plugin to check MX'es for the sender's domain
  1531. * [Feature] Add preliminary monitored module
  1532. * [Feature] Add preliminary support of dynamic conf updates in Redis
  1533. * [Feature] Add preliminary version of clamav plugin
  1534. * [Feature] Add redis cache to asn module
  1535. * [Feature] Add replies compression
  1536. * [Feature] Add spamhaus DROP dnsbl
  1537. * [Feature] Add support for dictionary in client compression
  1538. * [Feature] Add support for fuzzy learn and unlearn from lua
  1539. * [Feature] Add support for input encryption
  1540. * [Feature] Add support of min_learns to neural net classifier
  1541. * [Feature] Add termination callbacks for workers
  1542. * [Feature] Add user-agent for rspamc
  1543. * [Feature] Add utility to perform classifier tests
  1544. * [Feature] Add zstd compression library
  1545. * [Feature] Allow HTTPS requests in lua_http
  1546. * [Feature] Allow conditions for pre and postfilters
  1547. * [Feature] Allow custom functions for ratelimits
  1548. * [Feature] Allow for excluding messages from AV scanning based on size
  1549. * [Feature] Allow for getting worker stats from Lua
  1550. * [Feature] Allow getting task UID from Lua
  1551. * [Feature] Allow parsing of mailbox messages from the commandline
  1552. * [Feature] Allow plugins to publish their lua API via rspamd_plugins
  1553. * [Feature] Allow to compare other systems with Rspamd
  1554. * [Feature] Allow to execute Lua scripts by controller
  1555. * [Feature] Allow to have a function to set custom greylist message
  1556. * [Feature] Allow to iterate over multiple tags
  1557. * [Feature] Allow to pass extra data from plugins to log helper
  1558. * [Feature] Allow to plan new periodics at different time
  1559. * [Feature] Allow to reset hashes
  1560. * [Feature] Allow to run rspamadm lua just as a lua interpreter
  1561. * [Feature] Allow to store settings in redis
  1562. * [Feature] Allow to update dynamic conf in Redis
  1563. * [Feature] Allow to use dictionaries for compression
  1564. * [Feature] Allow to use md5, sha1, sha256, sha384 and sha512 hashes in Lua
  1565. * [Feature] Allow whitelisting by IP for greylisting plugin
  1566. * [Feature] Antivirus: Support whitelists & pattern-matching sig names
  1567. * [Feature] Backport pack/unpack routines from Lua 5.3
  1568. * [Feature] Check settings with equal priopities in alphabetical order
  1569. * [Feature] Compress neural net in redis
  1570. * [Feature] Consider more tags when doing WHITE_ON_WHITE rule
  1571. * [Feature] Descriptive options for DMARC failure symbols
  1572. * [Feature] Descriptive options for RBL symbols
  1573. * [Feature] Enable configuration for monitored objects
  1574. * [Feature] Execute on_load scripts with ev_base ready
  1575. * [Feature] Fann scores now uses metadata from a message
  1576. * [Feature] Implement FANN threaded learning
  1577. * [Feature] Implement classifying for lua classifiers
  1578. * [Feature] Implement finish scripts for worker processes
  1579. * [Feature] Implement monitoring for DNS resources
  1580. * [Feature] Implement real priorities for pre and post filters
  1581. * [Feature] Insert two symbols: FANN_HAM and FANN_SPAM instead of one
  1582. * [Feature] Module to push metadata/messages to redis pubsub
  1583. * [Feature] Monitor RBL records
  1584. * [Feature] Move fann_classifier to a separate plugin
  1585. * [Feature] Normalize all ANN inputs
  1586. * [Feature] Preliminary version of metric exporter module
  1587. * [Feature] Preserve decompression context between tasks
  1588. * [Feature] Ratelimit: Support dynamic bucket size/leak rate
  1589. * [Feature] Relax FORGED_RECIPIENTS: allow senders to BCC themselves
  1590. * [Feature] Remove symbols weights on composites processing
  1591. * [Feature] Return symbol scores when getting resulting symbols
  1592. * [Feature] Rework lua tcp module
  1593. * [Feature] Rule to detect some obvious X-PHP-Originating-Script forgeries
  1594. * [Feature] Rule to identify some X-PHP-Script forgeries
  1595. * [Feature] Rules for scoring Google Message-ID fixes
  1596. * [Feature] Send hashes values to reply
  1597. * [Feature] Set expire for dmarc reports
  1598. * [Feature] Stop using cymru zone as it is unstable
  1599. * [Feature] Stop using of GLists for headers, improve performance
  1600. * [Feature] Store `for` in task:get_received_headers
  1601. * [Feature] Store `for` part in received headers
  1602. * [Feature] Store enabled flag for webui session
  1603. * [Feature] Store error messages in ring buffer
  1604. * [Feature] Support compressed maps
  1605. * [Feature] Support excluding selected users from ratelimits
  1606. * [Feature] Support looking up NS records in lua_dns
  1607. * [Feature] Support modern style SURBL configuration
  1608. * [Feature] Support multiple hashes in delhash path
  1609. * [Feature] Support new messages in rspamc
  1610. * [Feature] Support requests without reads in lua_tcp
  1611. * [Feature] Support setting task message from Lua
  1612. * [Feature] Track visibility of HTML elements
  1613. * [Feature] Try to add CRLF when checking DKIM
  1614. * [Feature] Try to guess line endings when folding headers
  1615. * [Feature] Try to improve normalization function for bayes
  1616. * [Feature] Use FFI to optimize SA module
  1617. * [Feature] Use length based arguments for redis, allow lua_text as arg
  1618. * [Feature] Use more layers for fann and another normalization
  1619. * [Feature] User-defined ratelimits
  1620. * [Feature] Utility to convert fuzzy storage from sqlite to redis
  1621. * [Feature] Yield DMARC_DNSFAIL on lookup failure
  1622. * [Fix] Adopt fuzzy storage for flexible backends
  1623. * [Fix] Allow plain IP addresses in Rspamd maps
  1624. * [Fix] Another fix for brain-damaged hiredis
  1625. * [Fix] Another fix for rdns write errors
  1626. * [Fix] Another fix for rdns_make_request_full invocation
  1627. * [Fix] Another fix in DKIM canonicalization
  1628. * [Fix] Another memory leak plugged
  1629. * [Fix] Another try to deal with posix idiotizm
  1630. * [Fix] Another try to fix RDNS events processing logic
  1631. * [Fix] Avoid double frees in HEAD requests
  1632. * [Fix] Avoid extra symbols for RBLs
  1633. * [Fix] Banish table.maxn from Lua parts
  1634. * [Fix] Check for socket error before connection in lua_tcp
  1635. * [Fix] Correctly propagate redis timeouts to Lua
  1636. * [Fix] Do not add extra newline in MIME mode
  1637. * [Fix] Do not be cheated by system hiredis
  1638. * [Fix] Do not classify when a message has not enough tokens
  1639. * [Fix] Do not crash on redis errors
  1640. * [Fix] Do not distinguish NXDOMAIN and NOREC for monitored
  1641. * [Fix] Do not replan retransmits if merely one server is defined
  1642. * [Fix] Do not use headers to calculate messages digests
  1643. * [Fix] Don't force action in replies module for authenticated users/local networks
  1644. * [Fix] Explicitly ban default passwords in webui
  1645. * [Fix] Finally fix ambiguity between parsed and resolved spf elts
  1646. * [Fix] Fix 'decoded' value in task:get_header_full()
  1647. * [Fix] Fix DKIM calculations
  1648. * [Fix] Fix DKIM signing for messages with no newline at the end
  1649. * [Fix] Fix DNS request in monitored
  1650. * [Fix] Fix DNS write errors processing
  1651. * [Fix] Fix HTTP methods other than GET and POST
  1652. * [Fix] Fix PERMFAIL for v6/v4 ambiguities
  1653. * [Fix] Fix absurdic scores for HFILTER_URL_ONLY
  1654. * [Fix] Fix actions in rolling history
  1655. * [Fix] Fix actrie patterns
  1656. * [Fix] Fix applying of lua dynamic confg
  1657. * [Fix] Fix autolearning errors and redis cache
  1658. * [Fix] Fix bayes learn_condition
  1659. * [Fix] Fix build with the recent OpenSSL
  1660. * [Fix] Fix caching and compressed maps
  1661. * [Fix] Fix check plain text part
  1662. * [Fix] Fix crash on OpenBSD in `url_email_start`
  1663. * [Fix] Fix double free in SPF
  1664. * [Fix] Fix extraction of shingles from redis fuzzy storage
  1665. * [Fix] Fix false sharing for symbols in the cache
  1666. * [Fix] Fix float usage in util:get_time
  1667. * [Fix] Fix folding algorithm to deal with empty tokens
  1668. * [Fix] Fix format string
  1669. * [Fix] Fix format string usage in controller errors handling
  1670. * [Fix] Fix handling of '\0' in lua_tcp
  1671. * [Fix] Fix handling of HTTP HEAD methods
  1672. * [Fix] Fix hash creation
  1673. * [Fix] Fix hiredis stupidity
  1674. * [Fix] Fix implicit settings module settingsup
  1675. * [Fix] Fix interaction with lua GC to avoid craches
  1676. * [Fix] Fix ip_score module registration
  1677. * [Fix] Fix issue with empty messages and dkim
  1678. * [Fix] Fix issues with CGP helper
  1679. * [Fix] Fix issues with the recent SPF changes
  1680. * [Fix] Fix key name to load ANN correctly
  1681. * [Fix] Fix lua tcp module by saving `do_read` in callback data
  1682. * [Fix] Fix memory leak in client when using compression
  1683. * [Fix] Fix min_learns option
  1684. * [Fix] Fix on_finish scripts and async handlers
  1685. * [Fix] Fix options for SPF dnsfail symbol
  1686. * [Fix] Fix parsing includes and redirects in SPF
  1687. * [Fix] Fix parsing of lua comments with empty lines
  1688. * [Fix] Fix parsing of unquoted HTML attributes
  1689. * [Fix] Fix periodic events and redis
  1690. * [Fix] Fix processing of fuzzy learns from Lua
  1691. * [Fix] Fix processing of redirect in SPF includes
  1692. * [Fix] Fix processing of symbols when reject limit is reached
  1693. * [Fix] Fix refcounts when map is specified by IP
  1694. * [Fix] Fix rspamd{session} class in Lua API
  1695. * [Fix] Fix setting ratelimit key for 'ip' bucket
  1696. * [Fix] Fix some cases of TLD urls detector
  1697. * [Fix] Fix statconvert tool
  1698. * [Fix] Fix stats for backend-less classifiers
  1699. * [Fix] Fix training script for fann_redis
  1700. * [Fix] Fix variable in ann module
  1701. * [Fix] Fix various errors in lua dynamic conf plugin
  1702. * [Fix] Forget old ANN when max_usages is reached to avoid overtrain
  1703. * [Fix] Further canonicalization fixes
  1704. * [Fix] Further fixes for fann_redis prefixes
  1705. * [Fix] Handle failures for inactive pooled connections
  1706. * [Fix] Improve multimap info message
  1707. * [Fix] More fixes in ANN loading
  1708. * [Fix] More fixes to fann_redis
  1709. * [Fix] More issues in fann_redis
  1710. * [Fix] More spaces fix in DKIM signature
  1711. * [Fix] Multiple fixes to asn script, add IPv6 support
  1712. * [Fix] Multiple issues in fann_redis
  1713. * [Fix] No greylist rejected messages
  1714. * [Fix] One more attempt to fix lua_redis
  1715. * [Fix] One more check for readdir...
  1716. * [Fix] Params should be treated as a hash
  1717. * [Fix] Plug memory leak in regexp desctructor
  1718. * [Fix] Process headers only once
  1719. * [Fix] Properly handle nil values in ratelimit plugin
  1720. * [Fix] Really fix redis shingles check
  1721. * [Fix] Remove fann with incorrect layers count
  1722. * [Fix] Remove mentions of deleted include
  1723. * [Fix] Remove some incompatible functions
  1724. * [Fix] Settings: fix `authenticated` parameter (#886)
  1725. * [Fix] Skip MX check for authenticated users and local networks
  1726. * [Fix] Slightly fix ANN routines
  1727. * [Fix] Stop caching records with DNS failures
  1728. * [Fix] Treat all errors in redis_pool as fatal errors for a connection
  1729. * [Fix] Try avoid false-positives in HEADER_FORGED_MDN rule
  1730. * [Fix] Try to avoid race condition when using rrd
  1731. * [Fix] Try to reload redis scripts if they are missing
  1732. * [Fix] Unbreak once_received skipping for local networks
  1733. * [Fix] Unlock ANN on error
  1734. * [Fix] Use memmove for overlapping regions
  1735. * [Fix] Use real size instead of displayed for core limits
  1736. * [Fix] Use the correct macro to get the size of control
  1737. * [Fix] Various fixes for errors ringbuffer
  1738. * [Fix] Yield R_SPF_DNSFAIL if lookup of included record fails
  1739. * [Fix] mid: fix map initialization
  1740. * [Fix] mid: handle incorrect rgexps in the map
  1741. * [Rework] Add extract training data function to fann_redis
  1742. * [Rework] Add preliminary train tests
  1743. * [Rework] Add redis storage feature to fann_redis
  1744. * [Rework] Adopt fuzzy storage for abstract backend
  1745. * [Rework] Adopt plugins
  1746. * [Rework] First reiteration on fann scores
  1747. * [Rework] Implement loading/invalidating
  1748. * [Rework] Make lua_redis task agnostic
  1749. * [Rework] Make rspamd protocol messages useful
  1750. * [Rework] Massive removal of legacy code
  1751. * [Rework] More cleanup actions
  1752. * [Rework] Remove legacy code never used for classifiers
  1753. * [Rework] Remove outdated and unused lua_session module
  1754. * [Rework] Reorganize fuzzy backend structure
  1755. * [Rework] Reorganize the internal backend structure
  1756. * [Rework] Restore old fann_scores, move common parts
  1757. * [Rework] Rework and simplify rbl plugin
  1758. * [Rework] Rework parsing of DMARC records
  1759. 1.3.4:
  1760. * [Feature] ASN module; support matching ASN/country in multimap
  1761. * [Feature] Add SPF method in spf return result
  1762. * [Feature] Add Yandex and Mail.ru forwarding rules
  1763. * [Feature] Add mempool maps in multimap
  1764. * [Feature] Add rule for identifying mail sent by eval()'d PHP code
  1765. * [Feature] Add support of stub DNSSEC resolver to rdns
  1766. * [Feature] Add task:get_digest method
  1767. * [Feature] Allow for more fine-grained scoring for ip_score
  1768. * [Feature] Allow to get digest of a mime part from lua
  1769. * [Feature] Allow to print message digest in logs
  1770. * [Feature] Fold DKIM-Signature header
  1771. * [Feature] Implement encrypted logs
  1772. * [Feature] Log URLs encrypted if we have log encryption pubkey
  1773. * [Feature] Pass authenticated bit to lua
  1774. * [Feature] Read redis backend statistics configuration from global section
  1775. * [Feature] Show the exact value matched for multima symbols
  1776. * [Feature] Store task checksum
  1777. * [Fix] Avoid setting limits when required elements are missing
  1778. * [Fix] DMARC: Fix alignment checking for subdomains
  1779. * [Fix] DMARC: deal with missing and spurious spaces
  1780. * [Fix] Defer insertion of results in ip_score to avoid skewing stats
  1781. * [Fix] Disable DMARC for local/authorized mail
  1782. * [Fix] Fix handling of proxied headers in controller
  1783. * [Fix] Fix hex printing of strings
  1784. * [Fix] Fix issue with spaces in maps
  1785. * [Fix] Fix parsing of forwarded IP
  1786. * [Fix] Fix reload in some plugins and workers
  1787. * [Fix] Fix reloading on SIGHUP
  1788. * [Fix] Fix some border cases for DKIM canonicalization
  1789. * [Fix] Fix url maps
  1790. * [Fix] Make dnssec configurable option disabled by default for now
  1791. * [Fix] rspamadm statconvert: force db to be a string
  1792. * [Fix] rspamadm statconvert: use db/password for learn cache
  1793. * [Rework] Rework flags in rspamd logger
  1794. 1.3.3:
  1795. * [CritFix] Check hyperscan cache sanity before loading
  1796. * [CritFix] Fix setting of fuzzy keys (completely breaks fuzzy storage)
  1797. * [Feature] Add SARBL (sarbl.org) uribl
  1798. * [Feature] Add `--search-pattern` option to rspamd_stats
  1799. * [Feature] Add some sanity check for very long from/to log elements
  1800. * [Feature] Allow to create hashes from string in a single step
  1801. * [Feature] Fix order of pre and postfilters
  1802. * [Feature] Improve lua URLs API
  1803. * [Feature] Improve message about fuzzy rules
  1804. * [Feature] Pre-calculate blake2 digest for all parts
  1805. * [Feature] Print radix duplicate keys as IP addresses
  1806. * [Feature] Simple mechanism for disabling RBLs in local.d/rbl.conf
  1807. * [Feature] Use faster hash function for fuzzy storage
  1808. * [Feature] rspamd_stats: support log directory reading
  1809. * [Fix] Add sanity check for url filters
  1810. * [Fix] Do not show rmilter section as a fake metric in rspamc
  1811. * [Fix] Fix URL filters
  1812. * [Fix] Fix a stupid mistake in util.strequal_caseless
  1813. * [Fix] Fix blake2b hash of the string "rspamd"
  1814. * [Fix] Fix filename maps filter
  1815. * [Fix] Fix finding tld in util.get_tld
  1816. * [Fix] Fix multimap content filters
  1817. * [Fix] Fix returning boolean from Lua
  1818. * [Fix] Fix returning of REDIS_NIL
  1819. * [Fix] Try to deal with multiple workers terminated
  1820. * [Fix] Use forced DNS request when calling for lua_http
  1821. * [Rework] Rework multimap filters, add redis maps
  1822. 1.3.2:
  1823. * [Feature] Add a special symbol for SPF DNS errors: R_SPF_DNSFAIL
  1824. * [Feature] Add correlations report in fuzzy stats
  1825. * [Feature] Add experimental CGP integration
  1826. * [Feature] Add method to get urls length in a text part
  1827. * [Feature] Add new methods to lua_html to access HTML tags
  1828. * [Feature] Allow all types of symbols to be added via __newindex method
  1829. * [Feature] Allow to create settings for authenticated users
  1830. * [Feature] Allow to get block content for HTML tags
  1831. * [Feature] Improve DNS failures when dealing with SPF
  1832. * [Feature] Properly implement R_WHITE_ON_WHITE rule
  1833. * [Feature] Remove old ugly rules
  1834. * [Feature] Rspamc can now add dkim signature in mime mode
  1835. * [Feature] Store content length for HTML tags
  1836. * [Feature] Support reacher set of HTML colors
  1837. * [Feature] Try to avoid FP for low contrast fonts detection
  1838. * [Fix] Add missing HTML colors
  1839. * [Fix] Add spaces to dkim signature to allow folding
  1840. * [Fix] Avoid returning NaN as score on scan
  1841. * [Fix] Decode entitles in href parts
  1842. * [Fix] Do not cache SPF records with DNS errors
  1843. * [Fix] Do not crash on cyclic depends
  1844. * [Fix] Do not insert HELO/HOSTNAME unknown when they are not passed
  1845. * [Fix] Do not set absent hostname to "unknown"
  1846. * [Fix] Do not stress redis with KEYS command (#791)
  1847. * [Fix] Fix DMARC_BAD_POLICY symbol
  1848. * [Fix] Fix HFILTER_URL module
  1849. * [Fix] Fix HFILTER_URL_ONELINE rule
  1850. * [Fix] Fix buffering in CGP integration
  1851. * [Fix] Fix colors propagation from parent nodes
  1852. * [Fix] Fix confusing OpenSSL API usage of i2d_RSAPublicKey
  1853. * [Fix] Fix dependencies id sanity check
  1854. * [Fix] Fix folding for semicolon separated tokens
  1855. * [Fix] Fix largest possible TLD behaviour
  1856. * [Fix] Fix last token folding
  1857. * [Fix] Fix length calculations in white on white rule
  1858. * [Fix] Fix multiple request headers structure
  1859. * [Fix] Fix multiple values headers freeing
  1860. * [Fix] Fix parsing of background color
  1861. * [Fix] Fix printing from field in log_urls
  1862. * [Fix] Fix processing of last element of DMARC policies
  1863. * [Fix] Further fixes for HTML colors
  1864. * [Fix] Further fixes for multiple values headers
  1865. * [Fix] Further fixes for white on white rule
  1866. * [Fix] Further fixes in HTML tags parsing
  1867. * [Fix] Ignore content type/subtype case
  1868. * [Fix] Increase score of R_WHITE_ON_WHITE
  1869. * [Fix] Parse CGP envelope data
  1870. * [Fix] Propagate colors in HTML
  1871. * [Fix] Restore multiple values headers in protocol
  1872. * [Fix] Restore multiple values in headers processing
  1873. * [Fix] Some more changes to tag's content length calculations
  1874. * [Fix] Some more fixes for low contrast fonts detector
  1875. * [Fix] SpamAssassin plugin: support check_freemail_header('EnvelopeFrom', [..])
  1876. * [Fix] Trigger HTML_SHORT_LINK_IMG on any external image
  1877. * [Fix] rspamd_stats: remove deprecated defined(@array)
  1878. 1.3.1:
  1879. * [CritFix] Fix catena passwords validation
  1880. * [CritFix] Fix crash when the first received is faked
  1881. * [Feature] Add DMARC_BAD_POLICY symbol when DMARC policy was invalid
  1882. * [Feature] Allow for matching hostnames in multimap (#773)
  1883. * [Feature] Allow for setting action based on DMARC disposition
  1884. * [Feature] Allow limiting of the inbound message size
  1885. * [Feature] Allow maps with multiple symbols and scores
  1886. * [Feature] Allow regexps in the emails maps
  1887. * [Feature] Allow to register metric symbols from multimap
  1888. * [Feature] Allow to reset redis tokens instead of appendig values
  1889. * [Feature] Allow to store strings in radix maps
  1890. * [Feature] Check UTF validity when there are utf regexps in a map
  1891. * [Feature] Correctly work when there is no hard reject action
  1892. * [Feature] Implement dependencies for maps
  1893. * [Fix] Another effort to unbreak sqlite locking
  1894. * [Fix] Avoid crash when closing mmapped file
  1895. * [Fix] Do not break history on NaN in required score
  1896. * [Fix] Ensure that hyperscan cache written is written properly
  1897. * [Fix] Filter NaN from scores in history
  1898. * [Fix] Fix DNSBL maps
  1899. * [Fix] Fix another locking issue in sqlite
  1900. * [Fix] Fix another locking issue with mapped files
  1901. * [Fix] Fix deadlock in mmaped file stats
  1902. * [Fix] Fix dependencies in multimap plugin
  1903. * [Fix] Fix emails module configuration
  1904. * [Fix] Fix greylist plugin (#755)
  1905. * [Fix] Fix greylisting plugin variable usage
  1906. * [Fix] Fix installed permissions for rspamd_stats
  1907. * [Fix] Fix locking in mmapped statistics
  1908. * [Fix] Fix paths in tests
  1909. * [Fix] Fix prefilter mode for multimap
  1910. * [Fix] Forgot to commit leftover changes
  1911. * [Fix] Really fix local.d includes
  1912. * [Fix] Restore selective greylisting behaviour
  1913. * [Fix] Set max size on per connection basis
  1914. * [Fix] Use temporary storage for hyperscan cache
  1915. * [Rework] Remove systemd socket activation
  1916. 1.3.0:
  1917. * [CritFix] Fix SA rawbody processing - exclude top part
  1918. * [CritFix] Fix decoding of UTF HTML entitles
  1919. * [CritFix] Fix encrypted fuzzy requests
  1920. * [CritFix] Fix leak of shared memory fds and files
  1921. * [CritFix] Fix levenshtein distance calculations
  1922. * [CritFix] Fix mime headers processing
  1923. * [CritFix] Fix parsing of URLs in texts
  1924. * [CritFix] Fix parsing of missing classes
  1925. * [CritFix] Fix redis structure by adding {NULL, NULL} member
  1926. * [CritFix] Fix some more URL detector issues
  1927. * [CritFix] Fix systemd sockets activation
  1928. * [CritFix] Fix unencrypted passwords processing in the controller
  1929. * [CritFix] Fix writing CDPs to the database
  1930. * [CritFix] Fix writing of encrypted HTTP requests
  1931. * [CritFix] Plug memory leak in dkim module
  1932. * [CritFix] Plug memory leak in headers getting code
  1933. * [CritFix] Pre-filters and post-filters were completely broken
  1934. * [CritFix] Properly support SA body regexps
  1935. * [CritFix] Really skip filters in case of pre-result set
  1936. * [CritFix] Restore the intended pre-filters behaviour
  1937. * [Rework] Adopt new maps code
  1938. * [Rework] Compile ragel sources when building rspamd
  1939. * [Rework] Finish rework for the rest of places that use HTTP
  1940. * [Rework] Fix DKIM headers canonicalization
  1941. * [Rework] Fix lua maps API
  1942. * [Rework] Import linenoise for line editing
  1943. * [Rework] Include config structure to all rcl handlers
  1944. * [Rework] Make chartable module useful
  1945. * [Rework] Move http internal structures to a private header
  1946. * [Rework] Partly fix controller
  1947. * [Rework] Remove dedicated images list
  1948. * [Rework] Rename http proxy to rspamd proxy
  1949. * [Rework] Rename mime parts structures
  1950. * [Rework] Rework HTTP code
  1951. * [Rework] Rework exceptions and newlines processing
  1952. * [Rework] Rework pre and postfilters system
  1953. * [Rework] Separate method to close backend connections
  1954. * [Rework] Start the complete maps rework
  1955. * [Rework] Use dynamically generated ragel C sources
  1956. * [Feature] Add 'blacklist' and 'strict' modes for whitelists
  1957. * [Feature] Add 'symbols_enabled' and 'groups_enabled' to settings
  1958. * [Feature] Add ESMTPSA received type
  1959. * [Feature] Add a simple script to evaluate rspamd rules in the logs
  1960. * [Feature] Add a simple tool to generate DKIM keys
  1961. * [Feature] Add a trivial heuristic for codepages
  1962. * [Feature] Add and use mumhash for non-crypto hashing
  1963. * [Feature] Add better method to check lua userdata types
  1964. * [Feature] Add better zip files search algorithm
  1965. * [Feature] Add catena PBKDF function
  1966. * [Feature] Add configuration knobs for in and out parser scripts
  1967. * [Feature] Add content filtering support to multimap
  1968. * [Feature] Add different timeouts for proxy connections
  1969. * [Feature] Add dot commands for lua REPL:
  1970. * [Feature] Add execution of lua global functions script
  1971. * [Feature] Add function for pretty printing of inet addresses
  1972. * [Feature] Add function to convert fstring_t to c string
  1973. * [Feature] Add function to create temporary shared memory mapping
  1974. * [Feature] Add function to generate random hex string
  1975. * [Feature] Add generic fucnction to parse IP maps
  1976. * [Feature] Add initial version of HTTP lua repl
  1977. * [Feature] Add learn condition to the default configuration
  1978. * [Feature] Add learn conditions for classifiers
  1979. * [Feature] Add limit for dkim signatures to be checked
  1980. * [Feature] Add locking routines for lua_util
  1981. * [Feature] Add lua API for getting info from archives
  1982. * [Feature] Add lua utility to decode URL encoding
  1983. * [Feature] Add method to copy message from http connection
  1984. * [Feature] Add mirrors feature
  1985. * [Feature] Add more algorithms for shingles generation
  1986. * [Feature] Add more domains to redirectors list
  1987. * [Feature] Add more encodingsto cryptobox hash API
  1988. * [Feature] Add more file utilities to lua_util
  1989. * [Feature] Add more functions to extract data from text parts
  1990. * [Feature] Add more methods to get headers from a task
  1991. * [Feature] Add more methods to init http message body
  1992. * [Feature] Add more options for redis config parsing function
  1993. * [Feature] Add new representation of email address
  1994. * [Feature] Add new symbols to filter bad extensions in messages
  1995. * [Feature] Add new utility methods to mimepart object
  1996. * [Feature] Add openphish support to rspamd phishing module
  1997. * [Feature] Add parsers for SMTP address in ragel
  1998. * [Feature] Add parsing of mirror hosts for fuzzy storage
  1999. * [Feature] Add parsing scripts for master connection as well
  2000. * [Feature] Add preliminary greylist plugin
  2001. * [Feature] Add preliminary phishtank support
  2002. * [Feature] Add preliminary rarv5 support
  2003. * [Feature] Add preliminary version of ssl toolbox
  2004. * [Feature] Add protection against open files limit and accepting sockets
  2005. * [Feature] Add rar v4 support
  2006. * [Feature] Add reading scripts for master connection
  2007. * [Feature] Add replies plugin
  2008. * [Feature] Add results parsing code
  2009. * [Feature] Add routines to compare and check pubkeys
  2010. * [Feature] Add simpler versions of refcounts
  2011. * [Feature] Add some time manipulation functions for lua APi
  2012. * [Feature] Add support for non-standard BATV signatures
  2013. * [Feature] Add support of address with at-domain list
  2014. * [Feature] Add support to search archives by magic
  2015. * [Feature] Add task:get_rawbody method
  2016. * [Feature] Add test to check shared memory support sanity
  2017. * [Feature] Add the initial version of LUA repl to rspamadm
  2018. * [Feature] Add throughput graph for RRD backend to WebUI
  2019. * [Feature] Add universal function to make a proper redis request
  2020. * [Feature] Add universal function to parse redis servers for plugins
  2021. * [Feature] Add util.unlink function
  2022. * [Feature] Add utility function to return random number from 0 to 1
  2023. * [Feature] Add utility method to convert ftok to C string
  2024. * [Feature] Add utility to map shared memory segments
  2025. * [Feature] Add versions to fuzzy storage
  2026. * [Feature] Add workaround for legacy clients in rspamd proxy
  2027. * [Feature] Add workaround for systems without sane shmem support
  2028. * [Feature] Add xoroshiro+ fast rng for non-crypto purposes
  2029. * [Feature] Adopt plugins for new maps API
  2030. * [Feature] Allow SPF to be checked for empty tasks
  2031. * [Feature] Allow binary patterns in lua_trie
  2032. * [Feature] Allow catena encrypted passwords in controller
  2033. * [Feature] Allow client ip match in the settings
  2034. * [Feature] Allow easy adding and overriding of fuzzy rules
  2035. * [Feature] Allow empty tasks to be processed
  2036. * [Feature] Allow hostnames in IP maps
  2037. * [Feature] Allow https maps
  2038. * [Feature] Allow multiple PBKDF types in `rspamadm pw`
  2039. * [Feature] Allow named fuzzy rules
  2040. * [Feature] Allow non zero terminated patterns in multipattern
  2041. * [Feature] Allow partial hash updates
  2042. * [Feature] Allow pipelining for redis.make_request
  2043. * [Feature] Allow sending empty requests using client
  2044. * [Feature] Allow setting fuzzy flag by symbol not by value
  2045. * [Feature] Allow setting scores and actions from lua
  2046. * [Feature] Allow shared memory simple http client
  2047. * [Feature] Allow static lua files in any parts of rspamd sources
  2048. * [Feature] Allow to change flag from fuzzy learn condition
  2049. * [Feature] Allow to check rspamd_text using maps
  2050. * [Feature] Allow to disable composite rules from settings
  2051. * [Feature] Allow to disable some modules from common redis setup
  2052. * [Feature] Allow to extract ucl_object from lua using common API
  2053. * [Feature] Allow to get settings and settings id hash from lua_task
  2054. * [Feature] Allow to have specific settings for mirrored traffic
  2055. * [Feature] Allow to open message from a shared memory segment
  2056. * [Feature] Allow to parse pubkeys from the rcl config
  2057. * [Feature] Allow to pass extradata from rspamd to rmilter
  2058. * [Feature] Allow to query storage about number of fuzzy hashes stored
  2059. * [Feature] Allow to read logs without symbols scores
  2060. * [Feature] Allow to read password from console for rspamc
  2061. * [Feature] Allow to set ciphers and CA paths in config
  2062. * [Feature] Allow to skip some initialization phases to speed up rspamadm
  2063. * [Feature] Allow underscore separated names in settings
  2064. * [Feature] Allow versioning for sqlite databases
  2065. * [Feature] Always allow to terminate rspamd
  2066. * [Feature] Better deal with backend errors
  2067. * [Feature] Better lua_redis logging
  2068. * [Feature] Configure CA path and ciphers
  2069. * [Feature] Create a dedicated parser to strip newlines
  2070. * [Feature] Deduplicate the same urls in multimap module
  2071. * [Feature] Distinguish luajit from lua
  2072. * [Feature] Do not print garbadge in --compact output
  2073. * [Feature] Dynamically detect if a CPU is incompatible with hyperscan
  2074. * [Feature] Enable forced resolving for some lua plugins
  2075. * [Feature] Enable rrd by default
  2076. * [Feature] Enable workaround for exim
  2077. * [Feature] Fix task functions to work without rspamd_config
  2078. * [Feature] Further improvements to chartable module
  2079. * [Feature] Further micro-optimizations for hashing and shingles
  2080. * [Feature] Further relax parser
  2081. * [Feature] Humanize numbers in stats widgets
  2082. * [Feature] Implement HTTPS client
  2083. * [Feature] Implement SSL support in http client
  2084. * [Feature] Implement body rules for the trie plugin
  2085. * [Feature] Implement braced regexp quantifiers
  2086. * [Feature] Implement compare scripts for mirrors results
  2087. * [Feature] Implement compare scripts setup
  2088. * [Feature] Implement composites policies
  2089. * [Feature] Implement conditional learning for classifiers
  2090. * [Feature] Implement constructing of map from UCL
  2091. * [Feature] Implement dkim signing in dkim check plugin
  2092. * [Feature] Implement fuzzy storage updates
  2093. * [Feature] Implement fuzzy updates push protocol
  2094. * [Feature] Implement https maps
  2095. * [Feature] Implement inter-process maps caching
  2096. * [Feature] Implement mapping of remote flags to local flags
  2097. * [Feature] Implement mirroring in rspamd proxy
  2098. * [Feature] Implement multi-flags fuzzy replies
  2099. * [Feature] Implement multiple-sources fuzzy storage
  2100. * [Feature] Implement order of pre/post filters
  2101. * [Feature] Implement partial deleting for multi-flags
  2102. * [Feature] Implement pipelining for redis async interface
  2103. * [Feature] Implement ragel parser for received headers
  2104. * [Feature] Implement reading of messages to shared memory
  2105. * [Feature] Implement refcount for messages
  2106. * [Feature] Implement retransmits for master connection
  2107. * [Feature] Implement zero-copy mode for HTTP reading
  2108. * [Feature] Improve SPF domain detection logic
  2109. * [Feature] Improve config:register_symbol function
  2110. * [Feature] Improve error report for type mismatch in lua
  2111. * [Feature] Improve fstrings API
  2112. * [Feature] Improve getting SMTP data from lua_task
  2113. * [Feature] Improve levenshtein distance function
  2114. * [Feature] Improve logging in proxy and add refcounts
  2115. * [Feature] Improve logging lua types
  2116. * [Feature] Improve master/slave logging
  2117. * [Feature] Improve phishing plugin
  2118. * [Feature] Improve phishtank and openphish support
  2119. * [Feature] Improve ragel build target
  2120. * [Feature] Improve statistics script
  2121. * [Feature] Initialize ssl library to use SSL connections
  2122. * [Feature] Interpolate points sent to webui
  2123. * [Feature] Limit logging of elements that could have too many items
  2124. * [Feature] Lock ANN file when loading
  2125. * [Feature] New abstract hashing API in cryptobox
  2126. * [Feature] Normalize quoted addresses
  2127. * [Feature] Now cryptobox lua API accepts rspamd text as input
  2128. * [Feature] Optimize alignment to speed up hashing
  2129. * [Feature] Parse received date and ESMTPA proto
  2130. * [Feature] Parse received timestamp
  2131. * [Feature] Pass settings id to log helper
  2132. * [Feature] Pass settings id to lua script from log helper
  2133. * [Feature] Perform files expansion on proxying
  2134. * [Feature] Preliminary implementation of fuzzy master/slave updates
  2135. * [Feature] Print userdata using tostring if possible
  2136. * [Feature] Propagate HTTP result string when using proxy
  2137. * [Feature] Properly implement unweighted round-robin algorithm
  2138. * [Feature] Reduce number of timers queries
  2139. * [Feature] Rework and improve fuzzy storage
  2140. * [Feature] Rework dns resolving API for lua, add 'forced' option
  2141. * [Feature] Rework fann module to understand settings
  2142. * [Feature] Rework listening system to allow multiple socket types per worker
  2143. * [Feature] Rework ratelimit module to set expiration
  2144. * [Feature] Save bayes probability in memory pool var
  2145. * [Feature] Save settings id hash for convenience
  2146. * [Feature] Search for SSL_set_tlsext_host_name support
  2147. * [Feature] Send DKIM signature to protocol reply
  2148. * [Feature] Show DKIM signature in rspamc client
  2149. * [Feature] Show symbols description in scan output
  2150. * [Feature] Sign message merely after DKIM check
  2151. * [Feature] Simplify machines by assuming that headers are unfolded
  2152. * [Feature] Sort symbols when displaying them in log
  2153. * [Feature] Split main connection from mirrored connections
  2154. * [Feature] Start moving to the new email address structure
  2155. * [Feature] Store HTTP headers in a hash table
  2156. * [Feature] Store more information about compressed files
  2157. * [Feature] Store raw headers value to use them in DKIM
  2158. * [Feature] Store text parts content with newlines stripped
  2159. * [Feature] Support DKIM signing
  2160. * [Feature] Support EXIF jpeg images
  2161. * [Feature] Support archive files list extraction
  2162. * [Feature] Support archives when matching patterns in multimap
  2163. * [Feature] Support premium/academic feed for openphish
  2164. * [Feature] Support rspamd_updates via https
  2165. * [Feature] Supprort FQDNs in phishing module maps
  2166. * [Feature] Try to read on fuzzy timeout to avoid fake timeouts
  2167. * [Feature] Try to select the optimal possible function for input
  2168. * [Feature] Unescape and unquote smtp addresses
  2169. * [Feature] Update fuzzy timestamp when adding value
  2170. * [Feature] Update mumhash
  2171. * [Feature] Use -flto if possible when optimizations are enabled
  2172. * [Feature] Use extended map types in lua map, unify code
  2173. * [Feature] Use file lock in logger to avoid deadlocks
  2174. * [Feature] Use generic global string split function
  2175. * [Feature] Use metrohash as well
  2176. * [Feature] Use mumhash by default for incremental hashing
  2177. * [Feature] Use mumhash for words hashing
  2178. * [Feature] Use new ip parsing API
  2179. * [Feature] Use new maps API for local addrs
  2180. * [Feature] Use new ragel parser in message parsing code
  2181. * [Feature] Use new received parser instead of old one
  2182. * [Feature] Use new redis API in DMARC plugin
  2183. * [Feature] Use new redis API in greylist plugin
  2184. * [Feature] Use new redis API in ip_score plugin
  2185. * [Feature] Use new redis API in ratelimit plugin
  2186. * [Feature] Use new redis API in replies plugin
  2187. * [Feature] Use new version of register_symbol in rspamd plugins
  2188. * [Feature] Use offset when passing shm to deal with encrypted requests
  2189. * [Feature] Use one pass to remove newlines and store their positions
  2190. * [Feature] Use rspamd specific type checks for userdata
  2191. * [Feature] Use shared memory storage for http maps
  2192. * [Feature] Use universal redis definitions in rspamd plugins
  2193. * [Feature] Various improvements in greylist module
  2194. * [Feature] Wait for sqlite if locked when switching to WAL mode
  2195. * [Fix] Add filenames sanity filtering for mime types
  2196. * [Fix] Add guards for empty parts
  2197. * [Fix] Add missing types
  2198. * [Fix] Add more priority for config file symbols registered from UCL
  2199. * [Fix] Add sanity checks when compiling regexp maps
  2200. * [Fix] Add spaces instead of newlines to the normalized content
  2201. * [Fix] Add workaround for ancient openssl
  2202. * [Fix] Add workaround for gmime CTE stupidity
  2203. * [Fix] Add workaround for hex digits
  2204. * [Fix] Adjust MISSING_MIMEOLE score
  2205. * [Fix] Adjust body/body_buf when stealing encrypted message
  2206. * [Fix] Adopt lua task API for the new email addresses structure
  2207. * [Fix] Allow for disabling DMARC reporting when Redis is configured
  2208. * [Fix] Always register openphish and phishtank virtual symbols
  2209. * [Fix] Always use shmem on linux
  2210. * [Fix] Another change of newlines policy
  2211. * [Fix] Another d3evolution update
  2212. * [Fix] Another fix for exim workaround
  2213. * [Fix] Another fix for legacy clients
  2214. * [Fix] Another fix for maps scheduling
  2215. * [Fix] Another fix for marking upstreams inactive
  2216. * [Fix] Another fix for postfilters
  2217. * [Fix] Another fix for redis timeouts
  2218. * [Fix] Avoid `table.getn` method as it has been removed in lua 5.3
  2219. * [Fix] Avoid double hashing for images
  2220. * [Fix] Avoid linking with actrie if hyperscan is enabled
  2221. * [Fix] Check copy result when sending message to mirrors
  2222. * [Fix] Cleanup message when assiging body
  2223. * [Fix] Cleanup stack from global vars
  2224. * [Fix] Correctly parse query type
  2225. * [Fix] Disable all symbols if enable_groups is found in settings
  2226. * [Fix] Disable fts as it is completely broken in bloody linux
  2227. * [Fix] Disable multiple autolearn checks
  2228. * [Fix] Disallow updates by default
  2229. * [Fix] Do not abort when cannot load a map
  2230. * [Fix] Do not check recursion for non-DNS SPF record types
  2231. * [Fix] Do not delete uninitialized events
  2232. * [Fix] Do not die if shmem_mkstemp fails
  2233. * [Fix] Do not die when no metrics defined
  2234. * [Fix] Do not even try pcre in case of regexp maps
  2235. * [Fix] Do not greylist messages if redis has failed somehow
  2236. * [Fix] Do not greylist on rejection
  2237. * [Fix] Do not leave temporary maps cached
  2238. * [Fix] Do not output meaningless errors
  2239. * [Fix] Do not send NaN in json
  2240. * [Fix] Don't mix hyperscan and pcre processing within a same task
  2241. * [Fix] Finally rework and simplify redis backend for statistics
  2242. * [Fix] Fix Exim shutdown patch
  2243. * [Fix] Fix JIT compilation for PCRE2 expressions
  2244. * [Fix] Fix JIT usage for PCRE2
  2245. * [Fix] Fix REPL output
  2246. * [Fix] Fix SMTP address parsing machine
  2247. * [Fix] Fix UTF8 mode in PCRE2
  2248. * [Fix] Fix a stupid misprint in word 'phishing'
  2249. * [Fix] Fix accepting the first update when local idx is -1
  2250. * [Fix] Fix adding maps from ucl
  2251. * [Fix] Fix adding upstream to an active queue
  2252. * [Fix] Fix and rescore R_PARTS_DIFFER logic
  2253. * [Fix] Fix body rules in SA plugin
  2254. * [Fix] Fix body start position
  2255. * [Fix] Fix border case in urls detector
  2256. * [Fix] Fix border cases for incremental hashing
  2257. * [Fix] Fix caseless uthash application
  2258. * [Fix] Fix chartable issue with starting digits
  2259. * [Fix] Fix client_ip in users settings
  2260. * [Fix] Fix compilation issue
  2261. * [Fix] Fix conditional learning
  2262. * [Fix] Fix crash on empty maps
  2263. * [Fix] Fix creating of URLs from LUA
  2264. * [Fix] Fix creating of temporary shmem segment
  2265. * [Fix] Fix creation of mmapped statfiles
  2266. * [Fix] Fix descriptors leak on shmem detaching
  2267. * [Fix] Fix detaching of shared memory segments
  2268. * [Fix] Fix detection of URLs in text parts
  2269. * [Fix] Fix directories processing for rspamc
  2270. * [Fix] Fix displaying of rewrite subject in WebUI
  2271. * [Fix] Fix dkim private keys operations
  2272. * [Fix] Fix dkim signing
  2273. * [Fix] Fix dynamic scoring of subject symbols
  2274. * [Fix] Fix email address build
  2275. * [Fix] Fix encrypted proxy requests
  2276. * [Fix] Fix errors counting in upstreams
  2277. * [Fix] Fix errors handling in the proxy
  2278. * [Fix] Fix event bases for IO events
  2279. * [Fix] Fix events handling when scheduling map wacth
  2280. * [Fix] Fix fann rewrite
  2281. * [Fix] Fix files fallback for shmem transfer
  2282. * [Fix] Fix fuzzy adding in webui
  2283. * [Fix] Fix fuzzy storage encrypted mirroring
  2284. * [Fix] Fix fuzzy storage sync replies
  2285. * [Fix] Fix handling of the same words
  2286. * [Fix] Fix inserting values to the sources list
  2287. * [Fix] Fix ipv6 mask application
  2288. * [Fix] Fix issue with missing recipients
  2289. * [Fix] Fix issues with multiple returns from lua
  2290. * [Fix] Fix learning for non-existent backend
  2291. * [Fix] Fix legacy clients support in proxy
  2292. * [Fix] Fix length calculations for shared memory segments
  2293. * [Fix] Fix listening on UDP sockets
  2294. * [Fix] Fix loading of file maps
  2295. * [Fix] Fix long regexp flags (e.g. {sa_body})
  2296. * [Fix] Fix lua compare function init
  2297. * [Fix] Fix maps descriptions
  2298. * [Fix] Fix maps locking
  2299. * [Fix] Fix max_train setup in ANN module
  2300. * [Fix] Fix memory corruption
  2301. * [Fix] Fix memory leak in unsigned maps reading
  2302. * [Fix] Fix misprints for lto usage
  2303. * [Fix] Fix more issues with scripts processing
  2304. * [Fix] Fix next-to-last extension length check
  2305. * [Fix] Fix openssl initialization
  2306. * [Fix] Fix order of arguments
  2307. * [Fix] Fix order of initialization
  2308. * [Fix] Fix parser
  2309. * [Fix] Fix parsing of binary tries
  2310. * [Fix] Fix parsing of braced IPv6 addresses
  2311. * [Fix] Fix parsing of nested braces in SMTP comments
  2312. * [Fix] Fix parsing of rarv5 archives
  2313. * [Fix] Fix periodic scheduling when a map is not modified
  2314. * [Fix] Fix possible FP in TRACKER_ID rule
  2315. * [Fix] Fix post-filters processing
  2316. * [Fix] Fix potential NULL dereference
  2317. * [Fix] Fix processing of <br> and <hr> tags
  2318. * [Fix] Fix processing of addresses in protocol
  2319. * [Fix] Fix processing of messages without received headers
  2320. * [Fix] Fix proxying issue for unconnected sessions
  2321. * [Fix] Fix proxying of the encrypted messages
  2322. * [Fix] Fix race condition with shared memory by refcounts
  2323. * [Fix] Fix ratelimit initialization
  2324. * [Fix] Fix redis set request in replies plugin
  2325. * [Fix] Fix redis timeout events handling
  2326. * [Fix] Fix redis timeouts processing logic
  2327. * [Fix] Fix refcounts in lua_redis
  2328. * [Fix] Fix results checking if no master connection is active
  2329. * [Fix] Fix return value for couple of lua functions
  2330. * [Fix] Fix round-robin selection when upstreams have no weight
  2331. * [Fix] Fix rows calculation in graph
  2332. * [Fix] Fix rspamd_redis_make_request syntax in replies plugin
  2333. * [Fix] Fix scheduling of locked map events
  2334. * [Fix] Fix scores detection
  2335. * [Fix] Fix searching for newline positions
  2336. * [Fix] Fix secure_ip setting in controller
  2337. * [Fix] Fix sending data to graph command
  2338. * [Fix] Fix setting of score for parts differ
  2339. * [Fix] Fix setting of the lua top
  2340. * [Fix] Fix setting path for lua
  2341. * [Fix] Fix setting path for phishtank
  2342. * [Fix] Fix settings application
  2343. * [Fix] Fix shm_open call as described in POSIX
  2344. * [Fix] Fix size of length in fuzzy mirror wire protocol
  2345. * [Fix] Fix smtp grammar issues
  2346. * [Fix] Fix some issues with redis API
  2347. * [Fix] Fix some issues with retries in the proxy
  2348. * [Fix] Fix stack growing
  2349. * [Fix] Fix start of body detection in DKIM
  2350. * [Fix] Fix state on timeout
  2351. * [Fix] Fix stats script
  2352. * [Fix] Fix substring search when there are '\0' in strings
  2353. * [Fix] Fix symbol name for spf soft fail
  2354. * [Fix] Fix symbol type's check
  2355. * [Fix] Fix symbols registration and execution
  2356. * [Fix] Fix the case of multiple values keys
  2357. * [Fix] Fix the default symbol names according to metric
  2358. * [Fix] Fix timeout setup on learning
  2359. * [Fix] Fix timeouts in redis cache processing
  2360. * [Fix] Fix timeouts processing in lua_redis
  2361. * [Fix] Fix upstreams interaction for rspamd proxy
  2362. * [Fix] Fix usage of rdns reply structure
  2363. * [Fix] Fix varargs loop
  2364. * [Fix] Fix whitelists and blacklists in SA rules
  2365. * [Fix] Fix write servers setup for redis
  2366. * [Fix] Fix writing of HTTP messages
  2367. * [Fix] Force rspamd to upgrade fuzzy db on opening
  2368. * [Fix] Free the correct pointer
  2369. * [Fix] Further fixes for lto and static linking
  2370. * [Fix] Further fixes for surbl extensions map
  2371. * [Fix] Further fixes in maps code
  2372. * [Fix] Further improvements to error messages in fuzzy check
  2373. * [Fix] Further tweaks to redis garbadge collection
  2374. * [Fix] Groups are now case insensitive
  2375. * [Fix] Handle log pipe read errors
  2376. * [Fix] Handle nested dependencies in SpamAssassin plugin
  2377. * [Fix] Implement new automata to skip empty lines for dkim signing
  2378. * [Fix] Improve error messages on fuzzy add
  2379. * [Fix] Improve lua redis handling
  2380. * [Fix] Improve phishing module logging
  2381. * [Fix] Improve printing of fuzzy errors
  2382. * [Fix] Improve rrd diagnostic errors
  2383. * [Fix] Improve strcase hash used in uthash
  2384. * [Fix] Include fuzzy key to distinguish storages with different keys
  2385. * [Fix] Include slave cluster name into http request
  2386. * [Fix] Include some more information about archives
  2387. * [Fix] Indicate upstream error on timeout
  2388. * [Fix] Initialize hash tables array to avoid crashes
  2389. * [Fix] Initialize parser scripts properly
  2390. * [Fix] Initialize vars to avoid warnings
  2391. * [Fix] Inverse logic for saving ANN
  2392. * [Fix] Link lpeg to rspamd lua library
  2393. * [Fix] Make extension checks case-insensitive
  2394. * [Fix] Mark expired hashes as not found and not as zero flag
  2395. * [Fix] Match archive name as well
  2396. * [Fix] More and more fixes to redis states
  2397. * [Fix] More fixes about shared memory in proxy
  2398. * [Fix] More fixes for redis refcounts
  2399. * [Fix] More fixes to end of headers detection
  2400. * [Fix] More fixes to events logic
  2401. * [Fix] More fixes to multi-flag fuzzy storage
  2402. * [Fix] More fixes to parts distance calculations
  2403. * [Fix] More guards for redis free
  2404. * [Fix] One more fix in redis destructor
  2405. * [Fix] One more try to fix redis
  2406. * [Fix] PIE is required for static build
  2407. * [Fix] Partial fix for mmap'd statistics tests
  2408. * [Fix] Plug memory leak in proxy
  2409. * [Fix] Properly detect end of headers position
  2410. * [Fix] Properly init and free session structures
  2411. * [Fix] Reduce PRECEDENCE_BULK rule weight
  2412. * [Fix] Reduce the default thresholds for learning
  2413. * [Fix] Remove Type=forking from systemd unit file (#709)
  2414. * [Fix] Remove bad FANN file to save computational resources
  2415. * [Fix] Remove event before closing of fd to avoid race conditions
  2416. * [Fix] Remove parsing of 'from' variable in redis backend
  2417. * [Fix] Remove some bad domains from whitelists
  2418. * [Fix] Repair optional dependencies
  2419. * [Fix] Reset master connection when retransmitting scan request
  2420. * [Fix] Restore ONCE_RECEIVED symbol
  2421. * [Fix] Restore compatibility with old lua API behaviour
  2422. * [Fix] Restore redis runtime state
  2423. * [Fix] Reverse options when received
  2424. * [Fix] Send updates to mirrors only if we have some changes
  2425. * [Fix] Set host attribute properly when making HTTP request from lua
  2426. * [Fix] Set terminated state before calling of async free
  2427. * [Fix] Simplify MISSING_MIMEOLE rule
  2428. * [Fix] Simplify state machine by ignoring multiple spaces
  2429. * [Fix] Skip setting RPATH for static builds
  2430. * [Fix] Slightly reduce weights of rules with high FP rate
  2431. * [Fix] Some fixes to libmagic initialization
  2432. * [Fix] Some more fixes to ratelimit plugin
  2433. * [Fix] Strip '\r\n' properly
  2434. * [Fix] Switch hashes to mumhash
  2435. * [Fix] Treat NaN values properly in graph command
  2436. * [Fix] Try to avoid FP when checking for phished URLs
  2437. * [Fix] Try to avoid recursive events deletions
  2438. * [Fix] Try to fix false positive URL detections in text parts
  2439. * [Fix] Try to fix issue in redis stats backend when task is closed
  2440. * [Fix] Try to fix proxying of stupid spamc protocol to HTTP mirrors
  2441. * [Fix] Try to fix redis crashes
  2442. * [Fix] Try to fix upstreams with one element
  2443. * [Fix] Try to handle multiline history in a more sane way
  2444. * [Fix] Unbreak build on gcc < 4.9
  2445. * [Fix] Update RPM spec/sources (#700)
  2446. * [Fix] Update d3evolution version
  2447. * [Fix] Update mumhash implementation
  2448. * [Fix] Use custom error function for pre and post filters
  2449. * [Fix] Use new postfilters and prefilters API in the plugins
  2450. * [Fix] Use non-blocking mode for systemd sockets
  2451. * [Fix] Use shared memory merely for local backends in the proxy
  2452. * [Fix] Use watchers for spf plugin
  2453. * [Fix] Varioud fixes to the maps code
  2454. 1.2.8:
  2455. * Another fix for exim workaround (#637)
  2456. * Fix unencrypted passwords processing in the controller
  2457. * Fix setting path for lua (#652)
  2458. * Fix usage of rdns reply structure (#654)
  2459. * Use file lock in logger to avoid deadlocks
  2460. * Add `application/octet-stream` mime type for `pdf` extension (by @moisseev)
  2461. * Implement new automata to skip empty lines for dkim signing (#651)
  2462. * Fix parsing of missing classes
  2463. * Clarify some rspamc arguments (by @fatalbanana)
  2464. * Correct suppress spelling
  2465. 1.2.7:
  2466. * Slightly reduce weights of rules with high FP rate
  2467. * Add workround for rspamd-1.3
  2468. * Fix possible FP in TRACKER_ID rule
  2469. * Simplify MISSING_MIMEOLE rule
  2470. * Add workaround for gmime CTE stupidity
  2471. * Fix mime headers processing
  2472. * Fix false positive URL detections in text parts
  2473. * Fix Exim shutdown patch
  2474. * Enable workaround for exim mailbox format
  2475. * Backport shingles static test
  2476. * Fix levenshtein distance calculations
  2477. * Fix max_train setup in ANN module
  2478. * Fix redis structure by adding {NULL, NULL} member
  2479. * Fix build with unmodified LibreSSL opensslv.h
  2480. * Repair optional dependencies
  2481. * Really skip filters in case of pre-result set
  2482. * Restore the intended pre-filters behaviour
  2483. * Fix ipv6 mask application
  2484. 1.2.6:
  2485. * Fix parsing of URLs in texts
  2486. * Fix creating of URLs from LUA
  2487. * Fix some more URL detector issues
  2488. * Fix unit tests
  2489. * Fix JIT compilation for PCRE2 expressions
  2490. * Fix JIT usage for PCRE2
  2491. * Fix UTF8 mode in PCRE2
  2492. * Add workaround for pre-historic compilers (#605)
  2493. * Fix and rescore R_PARTS_DIFFER logic
  2494. * Properly set lua paths for tests
  2495. * Fix SA rawbody processing - exclude top part
  2496. * Store text parts content with newlines stripped
  2497. * Properly support SA body regexps
  2498. * Fix body rules in SA plugin
  2499. * Fix setting of score for parts differ
  2500. * More fixes to parts distance calculations
  2501. - Use hashed words instead of full words for speed
  2502. - Improve levenstein distance calculations and penalise replaces
  2503. - Always return number from 0 to 1
  2504. - Use g_malloc instead of alloca
  2505. * Fix percents output in R_PARTS_DIFFER
  2506. * Plug memory leak in dkim module
  2507. * Plug minor memory leak in regexps creation
  2508. 1.2.5:
  2509. * Plug an important memory leak in headers getting code
  2510. * Remove some bad domains from whitelists
  2511. 1.2.4:
  2512. * Implement new multipattern matcher that uses hyperscan if possible
  2513. * Use mutlipattern for lua_trie code
  2514. * Add utility methods for multipattern
  2515. * Use multipattern in url matcher
  2516. * Add escape functions for hyperscan
  2517. * Allow to optimize lua -> C transition by flattening table args
  2518. * Optimize hot paths in SA plugin
  2519. * Optimize rspamd_re_cache_type_from_string
  2520. * Allow empty tries
  2521. * Fix extraction of URLs from Subject
  2522. * Allow to have different flags for different patterns in multipattern
  2523. * Add common directory for hyperscan cache to config
  2524. * Implement caching for hyperscan multipattern
  2525. * Attach domain part to `R_SUSPICIOUS_URL` (by @moisseev)
  2526. * Allow multipattern scans to be nested for the case of hyperscan
  2527. * Simplify SURBL redirector search code and avoid ac_trie
  2528. * Add two way substring search algorithm
  2529. * Avoid acism usage to find gtube pattern
  2530. * Fix processing of empty headers
  2531. * Allow to disable pthread mutexes on broken platforms
  2532. * Make web interface not send password in query strings (#585) by @fatalbanana
  2533. * Add maximum delay to ratelimit module
  2534. * Backport fix for empty files inclusion from libucl
  2535. * Fix settings id setup
  2536. * Add min_learns option to classifiers
  2537. * Use more clever to utf8 conversion strategy
  2538. * Fix disabling of virtual symbols in the settings
  2539. * Rework settings to work properly in metric-less configuration
  2540. * Set the default limit for classifier
  2541. * Fix ttl based expiration from LRU cache
  2542. * Rework DKIM module to use OpenSSL for digests
  2543. * Fix mailto urls parsing with hyperscan
  2544. * Do not set obscured flag for urls starting with spaces
  2545. * Fix crash on redis learn
  2546. * Fix ratelimit ctime setting
  2547. 1.2.3:
  2548. * New DCC module (by @smfreegard)
  2549. * Rework whitelist module:
  2550. - Now we check different elements for different checks
  2551. - MIME from for DMARC
  2552. - DKIM signature domain for DKIM
  2553. - SMTP from or HELO for SPF
  2554. * Fix regexps results combination (*critical*)
  2555. * Fix issue with expressions processing (*critical*)
  2556. * Optimize strlcpy for aligned input
  2557. * Add support of half-closed connection in lua_tcp
  2558. * Allow to print compact json in client
  2559. * Save required score in history (#581)
  2560. * Allow to attach file descriptors to control commands
  2561. * Allow to send descriptors from workers to main
  2562. * Allow to attach fd when broadcasting to workers
  2563. * Implement log pipe feature for rspamd logs analysis
  2564. * Add `log_helper` worker
  2565. * Add `URIBL_SBL_CSS` (by @smfreegard)
  2566. * Add worker scripts functionality
  2567. * Add on load hooks for rspamd_config
  2568. * Add lua scripts for log_helper worker
  2569. * Add generic maillist detector (#584)
  2570. * Implement FANN autolearn using log_helper worker
  2571. * Rework metrics configuration to allow includes
  2572. * Change default value of forced removal in composite rules
  2573. * Allow to use assembly version of blake2b on x86 cpu
  2574. * Use less precise (but faster) clock if possible
  2575. * Insert redirected URL to the urls list
  2576. * Allow to get and set callback data for rspamd symbols
  2577. * Add binary heap implementation
  2578. * Use binary heap for expire algorithms in the hash
  2579. * Use `least frequent used` expiration strategy
  2580. * Allow to get mime headers from a task
  2581. * Add support for mime headers in `regexp` module
  2582. * Update Exim patches (by @fatalbanana)
  2583. * Allow building rspamd with jemalloc
  2584. * Save multipart boundaries
  2585. * SA plugin changes:
  2586. - Properly handle MIME headers
  2587. - Fix eval:check_for_missing_to_header rule
  2588. - Implement SA compatible body regexps
  2589. - Use sabody rules in SA plugin
  2590. * LUA API changes:
  2591. - Add util.get_ticks function
  2592. - Add util.stat function
  2593. - Add task:get_symbols_numeric method
  2594. - Add method to get number of symbols in the cache
  2595. - Add lua methods to get redirected urls
  2596. - Allow to get callbacks for lua symbols
  2597. - Add config:set_symbol_callback function
  2598. 1.2.2:
  2599. * Use HTTP Content-Type on non mime input if possible
  2600. * Save log level when compressing log messages
  2601. * Further rework of composite rules (add '^' prefix)
  2602. * Add tracking for rspamd expressions
  2603. * Store actions limits in metric result
  2604. * Fix parsing of include/redirect with many records in SPF
  2605. * Add method to disable symbols execution in the cache
  2606. * Allow to disable checks from settings
  2607. * Allow to select settings by id in HTTP query
  2608. * Find URLs with '\r' and '\n' inside href attribute
  2609. * Implement vectored mode for hyperscan (experimental)
  2610. * Improve client connection errors diagnostics
  2611. * Allow to edit new files with signtool
  2612. * Improve hashes performance on 32 bit platforms
  2613. * Fix sorting of limits
  2614. * Remove slow and unused rules `INVALID_EXIM_RECEIVED*`
  2615. * Add expression:process_traced lua method
  2616. * Allow tables in task:insert_result
  2617. * Save trace for SA metas
  2618. * Do not parse broken TLD parts in URLs
  2619. * Investigate many border cases in URLs parser
  2620. 1.2.1:
  2621. * Add list support to `mime types` module configuration (by @moisseev)
  2622. * Allow symbols params to be printed in logs
  2623. * Fix `MIME_BAD_ATTACHMENT` false positives for MDN/DSN
  2624. * Fix crashes on arm32
  2625. * Do not classify message if some class is missing
  2626. * Fix cryptobox cleanup
  2627. * Remove multipart/report from bad mime types (#569)
  2628. * Improve logging for fuzzy hashes
  2629. * Show map URLs in webui
  2630. * Sort symbols in webui
  2631. 1.2.0:
  2632. * New dynamic updates plugin
  2633. * Regular expressions map support
  2634. * Faster radix trie algorithm
  2635. * Faster siphash for AVX2 supporing CPUs (used in fuzzy hashes)
  2636. * PCRE2 support
  2637. * Allow quoted and slashed keys in map
  2638. * Add proper support of DNS resolvers balancing (#552)
  2639. * Rework includes and configuration system for better local changes support
  2640. * New keypairs framework for signing and encryption
  2641. * Added support for dynamic modules and workers
  2642. * Allow to dump configuration with help comments
  2643. * Rework once_received module
  2644. - Fix priority for `good_hosts`
  2645. - If a good host has been found do not add once_received symbols
  2646. - Fix priorities for strict once_received
  2647. - Add ability to whitelist IP addresses
  2648. * Implement support of signed maps for HTTP and file maps
  2649. * Add command to sync fuzzy storage (#533)
  2650. * Rework system of symbols and actions registration
  2651. It is possible now to use priorities when adding symbols to metrics and
  2652. override scores for symbols with lower priority with the scores with
  2653. high priority.
  2654. * Add auth support and db selection for redis stats
  2655. * Improve composite rules application
  2656. * Add ignore_received option
  2657. * Fix critical issue with inconsistent resorting
  2658. * Fix `all` in spf redirects
  2659. * Add punycoded versions for IDN domains (#554)
  2660. * Improve sorting order for symbols cache
  2661. * Add lockless logging for processes management
  2662. * Allow to specify flags for metric symbols
  2663. * Load images height and width from style attribute (#538)
  2664. * Override DNS requests limits for SPF and DKIM
  2665. * Fix resetting symbols to their default values in WebUI
  2666. * Improve configuration agility for redis stats
  2667. * Allow to set db and password for redis in stat_convert
  2668. * Import the latest libucl
  2669. * LUA API changes:
  2670. - Add rspamd_version function to LUA API
  2671. - Add lua_cryptobox module
  2672. - Add lua_map module
  2673. - Add task:set_metric_action lua API method
  2674. - Fix race condition in lua_tcp module
  2675. - Fix a lot of issues in lua_redis module
  2676. - Rework and abstract lua maps API
  2677. - Add util.strlen_utf8 lua function
  2678. - Add lua functions for caseless comparison
  2679. - Allow optional symbols registration
  2680. - Add config:add_map table form method, add regexp maps
  2681. - Add task:has_urls method
  2682. - Add task:has_flag method
  2683. - Add html tags methods to lua_html
  2684. - Add task:get_dns_req
  2685. * Plugins changes:
  2686. - Add support for WLBLEval SA plugin
  2687. - Use caseless comparison in SA and DMARC plugins
  2688. - Allow SA plugin to set scores for rspamd symbols
  2689. - Add regexp maps support to multimap
  2690. - Allow filenames match in multimap
  2691. - Add more filters for the existing map types
  2692. - Fix html images rules to reduce FP rates
  2693. * New rules:
  2694. - LONG_SUBJ - too long subject
  2695. - MIME_BAD_ATTACHMENT - bad attachment type
  2696. - RDNS_NONE - no reverse DNS record for sender's IP
  2697. - Fix MISSING_MIMEOLE rule for modern OE
  2698. * Many other bugfixes, memory leaks plugs thanks to:
  2699. - Coverity scan
  2700. - New gcc-6 warnings
  2701. - valgrind manual iterations
  2702. * Documentation improvements:
  2703. - FAQ list: https://rspamd.com/doc/faq.html
  2704. - Reworked quick start guide
  2705. - Added documentation for all active modules
  2706. * Other changes:
  2707. - Dropped Ubuntu Vivid support
  2708. - Added Ubuntu Xenial support
  2709. - Rework build system for rspamd and rmilter
  2710. 1.1.4:
  2711. * Print traceback on lua errors in lua config
  2712. * Fix leaks in lua error paths
  2713. * Improve 'R_EMPTY_IMAGE' rule
  2714. * Fix metas memoization in SA plugin
  2715. * Properly set `flag` in fuzzy replies
  2716. * Fix arguments order
  2717. * Fix issue with out-of-boundary reading
  2718. * Fix issues found by coverity
  2719. * Same result checking error found by coverity
  2720. * Fix varargs processing (found by coverity)
  2721. * Fix error in printing hex
  2722. * Reduce weights for some hfilter patterns
  2723. * Add aliases for task:get_from_ip:
  2724. - task:get_addr
  2725. - task:get_from_addr
  2726. - task:get_ip
  2727. * Rework once_received module
  2728. - Fix priority for `good_hosts`
  2729. - If a good host has been found do not add once_received symbols
  2730. - Fix priorities for strict once_received
  2731. - Add ability to whitelist IP addresses
  2732. * Fix `MISSING_MIMEOLE` rule for modern OE
  2733. * Treat meta tags as embedded tags (#501)
  2734. 1.1.3:
  2735. * Fix DSN rules when SMTP from is unavailable
  2736. * Fix statconvert routine to avoid lua module usage
  2737. * Set a sane quark for configtest to avoid NULL to be printed in logs
  2738. * Support c11 if available
  2739. * Fix parsing of ip:port strings
  2740. * Add more diagnostic for lua subr errors
  2741. * Fix task:set_from_ip lua method
  2742. * Add basic routines for digital signatures
  2743. * Add tool for digital signatures
  2744. * Add plain open file API method for atomic open
  2745. * Fix parsing nested braces inside logger vars
  2746. * Pre filters now actually skip processing
  2747. * Add pre-filter mode for multimap
  2748. * Switch to apache 2 license
  2749. 1.1.2:
  2750. * Fix stat_cache closing
  2751. * Add checkpoints to sqlite3 learn cache
  2752. * Do not recompile lua generated headers all the time
  2753. * Increase number of messages learned
  2754. * Fix issues with dual stack and hfilter
  2755. * Disable MID checks for hfilter by default
  2756. * Fix cache definitions in multiple classifier and no type
  2757. * Don't crash if learn cache failed to initialize
  2758. * Fix googlegroups support in maillist plugin
  2759. * Rework flags LUA API:
  2760. - Allow to check for a specific flag
  2761. - Add `learn_spam`, `learn_ham` and `broken_headers` flags
  2762. - Unify internal functions
  2763. * Add `BROKEN_HEADERS` rule
  2764. * Add support for forged confirmation headers (by @AdUser)
  2765. * Allow `any`, `mime` and `smtp` for get_from/get_recipients
  2766. * Add mime types checking plugin
  2767. * Add rule to detect spammers attempts to cheat mime parsing
  2768. * Rework parsing of IP addresses in configuration (better IPv6 support)
  2769. * Add `util.parse_mail_address` function to LUA API
  2770. * Add lua sqlite3 module
  2771. * Implement synchronous redis call
  2772. * Ratelimit: avoid possible indexing of nil value (Fixes #498) (by @fatalbanana)
  2773. * Add stat_convert command to convert stats tokens from sqlite3 to redis
  2774. * Implement redis advanced lua api with pipelining
  2775. * Fix memory leak on redis stat (#500)
  2776. * Fix user/language learn count in sqlite statistics (#496) (by @fatalbanana)
  2777. * Fix build with custom pcre
  2778. * Fix fuzzy relearning (#498)
  2779. * Improve planning of asynchronous tasks
  2780. * Show slow rules in log
  2781. * Add warning for slow regexps
  2782. * Add base32 decode/encode routines to lua util
  2783. * Allow converting of learn cache from sqlite to redis
  2784. * Add methods to check if a messages has from/rcpts
  2785. * Improve and fix multimap plugin:
  2786. - Restore 'header' maps
  2787. - Add filters for headers
  2788. - Add 'email:addr', 'email:user', 'email:domain' and 'email:name' filters
  2789. - Add generic regexp filters
  2790. * Disable reload command in rc scripts
  2791. * Improve runtime CPU dispatcher for libcryptobox
  2792. * Add preliminary support of digital signatures via ed25519
  2793. * Add detection for RDRAND support
  2794. * Print configuration of crypto on start
  2795. * A in SPF presumes AAAA lookup as well
  2796. 1.1.1:
  2797. * Fix duplicated XBL symbol
  2798. * Reduce log severity for ratelimit missing servers
  2799. * Fix XBL composite to avoid duplicate symbols
  2800. * Reduce weight of URL_ONLY rule due to FP rate
  2801. * Disable fuzzy hashes from the metadata for now
  2802. * Fix processing of empty messages (#486)
  2803. * Always treat DNS timeouts as temporary fail for SPF
  2804. * Fix issue with SPF double IP stack (#483)
  2805. * Use X-Forwarded-For when checking secure_ip (#488)
  2806. * Fix hash calculation for sqlite stats
  2807. * Fix memory corruption on punycode
  2808. * Fix strings allocation in punycode
  2809. * Fix error message (#491)
  2810. 1.1.0:
  2811. * Incompatible change: sqlite3 and per_user behaviour:
  2812. Now both redis and sqlite3 follows the common principles for per-user
  2813. statistics:
  2814. 1) If per-user statistics is enabled check per-user tokens ONLY
  2815. 2) If per-user statistics is not enabled then check common tokens ONLY
  2816. If you need old behaviour, then you'd need to use separate classifier
  2817. for per-user statistics.
  2818. * Implement redis statistics backend and cache
  2819. * Implement autolearning for statistics
  2820. * Reworked statistics architecture from scratch
  2821. * Add hyperscan (https://github.com/01org/hyperscan) engine for regular
  2822. expressions:
  2823. - add lazy loader for hyperscan databases
  2824. - rework regexp cache to have joint pcre/hyperscan scanning
  2825. - implement hyperscan pre-filter support
  2826. - add compilation guards for bad expressions
  2827. - implement `rspamadm control recompile` command
  2828. - implement hyperscan cache monitoring
  2829. - slides: <https://highsecure.ru/rspamd-hyperscan.pdf>
  2830. * Implement flexible task logging
  2831. * Rework fuzzy worker:
  2832. - it is now possible to run multiple fuzzy workers;
  2833. - implement lazy writing as sqlite3 is bad at concurrent writing;
  2834. - add retries for simple sql commands in fuzzy backend;
  2835. - use fine-grained transactions for fuzzy;
  2836. - implement new multi-pubkeys mode;
  2837. - allow encrypted only storages;
  2838. - rework statistics for fuzzy;
  2839. - add `rspamadm control fuzzystat` command for extended statistics;
  2840. - implement human readable output for the previous command;
  2841. - add condition script for learning fuzzy storage;
  2842. * Various fixes to SPF:
  2843. - fix `redirect` records;
  2844. - fix domains when parsing mx/ptr/a records in includes/redirects;
  2845. - fix issues with multiple addresses in SPF records;
  2846. - ignore SPF results in case of DNS failure;
  2847. - adjust TTL of records when resolving subelements of SPF records;
  2848. - always select `v=spf1` line if it is available
  2849. - do not cache records with DNS failure in subrequests;
  2850. - ignore records with temporary fails during subrequests resolving;
  2851. - fix `RDNS_RC_NOREC` support;
  2852. * Add clang plugin for static analysis:
  2853. - implement static checks for `rspamd_printf` format strings;
  2854. * Add 'allow_raw_input' option for non-mime messages
  2855. * Recognize types using libmagic
  2856. * Fix parsing of IPv6 received headers
  2857. * Add new interface of communication between workers in rspamd
  2858. * Add support for named socketpairs
  2859. * Don't write URLs by default as it is too verbose
  2860. * Set status for HTTP replies
  2861. * Try load `rspamd.conf.override`
  2862. * Implement words decaying for text parts to limit many checks
  2863. * Improve support of SA rules and plugins:
  2864. - add check_for_shifted_date and check_for_missing_to_header eval rules;
  2865. - add 'check_relays_unparseable' support;
  2866. - add `check_for_mime('mime_attachement')` function;
  2867. - use new re_cache interface for all SA rules;
  2868. - add support for `Mail::SpamAssassin::Plugin::MIMEHeader`;
  2869. - add support of 'special' SA headers to `exists` function;
  2870. - fix issue when SA metas contain other metas;
  2871. - fix freemail rules;
  2872. * Many fixes to the URL parser
  2873. * Match any newline character in regexps
  2874. * Fix resolving of upstreams and detection of poor IPv6 configurations
  2875. * Parse upstreams selection algorithm from the configuration line
  2876. * Add `reresolve` command to the control interface
  2877. * Generate fuzzy hashes from task metadata (URLs and headers)
  2878. * Add method to check if IP is local and `local_addrs` option
  2879. * Implement forced timeout for delayed filters
  2880. * Disable fast path of pcre-jit as it seems to be broken
  2881. * Bayes fixes:
  2882. - new normalizer function;
  2883. - really use weights of tokens from the OSB algorithm;
  2884. - restore multiple classifiers support;
  2885. * Rules changes:
  2886. - add `R_SUSPICIOUS_URL` rule that detects obfuscated URL's;
  2887. - improve empty image rule;
  2888. - rework `FORGED_RECIPIENTS` rule;
  2889. - reduce weight of `SUSPICIOUS_RECIPS`;
  2890. - fix `*_NORESOLVE_MX` symbols in hfilter;
  2891. - add `SUBJ_ALL_CAPS` rule with support of UTF8
  2892. - add spamhaus SBL to uribl
  2893. - fix `SUSPICIOUS_RECIPS` and `SORTED_RECIPS` rules
  2894. - remove `R_TO_SEEMS_AUTO` as it generates a lot of FP;
  2895. - add new Message-ID regexp for Thunderbird (by @moisseev);
  2896. * Plugins changes:
  2897. - allow ratelimit plugin to set symbol instead of pre-result
  2898. - support IP DNS black lists for URIBL (e.g spamhaus SBL);
  2899. - drop deprecated SURBL bits (by @fatalbanana)
  2900. - rename `JP_SURBL_MULTI` to `ABUSE_SURBL` (by @fatalbanana)
  2901. - add `SURBL_BLOCKED` (by @fatalbanana)
  2902. - add `CR_SURBL`
  2903. - SURBL: allow fallthrough to default symbol (by @fatalbanana)
  2904. - Settings: fix IP match (by @fatalbanana)
  2905. - SURBL: add missing symbols to metric (by @fatalbanana)
  2906. - allow processing images urls for SURBL
  2907. - unconditionally disable SPF for authenticated users and local networks
  2908. * Rework ratelimit plugin
  2909. - switch to `rates` instead of old and stupid strings to setup;
  2910. - check if a bucket is zero and disable the corresponding limits'
  2911. - turn off all buckets by default;
  2912. - check either `rcpt` or `user` buckets, not all together'
  2913. - document new `rates` and `symbol` options;
  2914. - inform user about what buckets are used in the configuration;
  2915. * Add neural network **experimental** plugin
  2916. * Add a sample script to learn neural network from rspamd logs
  2917. * Add documentation strings support to rspamd:
  2918. - add strings for the main configuration options;
  2919. - document workers options;
  2920. - add internal plugin options;
  2921. - create `rspamadm confighelp` routine;
  2922. - implement human readable output for the previous command;
  2923. - add subtree search support;
  2924. - add keyword search support;
  2925. * Documentation improvements, tutorials section, statistics description
  2926. * Many other minor and major bugfixes not noted here
  2927. 1.0.11:
  2928. * Fix spf redirects
  2929. * Fix domains when parsing mx/ptr/a records in includes/redirects
  2930. * Fix unfolded base64 encoding
  2931. * Fix GError use-after-free
  2932. * Do not rewrite the original url when using redirector
  2933. * Fix parsing of fragment in urls
  2934. * Fix processing of HTML tags
  2935. * Improve empty image rule
  2936. * Avoid long double type
  2937. * Fix tokens weights in OSB algorithm
  2938. * Improve debugging for bayes
  2939. 1.0.10:
  2940. * Fix settings application (#416)
  2941. * Fix another issue with fixed strings
  2942. * Fix hash function invocation
  2943. * Use the proper string for make_dns_request in lua_http
  2944. * Fix scan time output
  2945. * Update webui:
  2946. - fix labels for greylisting
  2947. - fix dimension of scan time
  2948. 1.0.9:
  2949. * Emergency fix in keyed blake2 to fix fuzzy hashes and encrypted password
  2950. * Support passwords longer than 64 symbols
  2951. 1.0.8:
  2952. * Add function to traverse AST atoms
  2953. * Allow dependencies on rspamd symbols for SA metas
  2954. * Fix memory corruption when timeout is removed in fuzzy check
  2955. * Fix encrypted fuzzy add processing
  2956. * Avoid use-after-free in controller session destructor
  2957. * Use session pool instead of task pool in fuzzy check
  2958. * Fix assembly in i386 mode (#413, #412)
  2959. 1.0.7:
  2960. * Plugged memory leaks in internet address object & html parser
  2961. * Fixed static build
  2962. * Fixed multiple sigchld processing
  2963. * Fixed deletion of signal events after event processing loop
  2964. * Fixed build on ARM (#404 - reported by @Gottox)
  2965. * Fixed setting the default mask for SPF.
  2966. * Fixed sanitisation of HTTP query values
  2967. * Fixed parsing of the last header in encrypted HTTP messages
  2968. * Additions and fixes for test suite & benchmarks
  2969. * Added openssl aes-256-gcm support to libcryptobox & HTTP server
  2970. * Implemented support for starting multiple HTTP servers
  2971. * Implemented batch accept in HTTP server
  2972. * Added module to get data from HTTP headers (#285 - reported by @msimerson)
  2973. * Added `rspamadm control` command
  2974. * Added ability to sort counters output.
  2975. * Added ability to specify custom headers for rspamc client
  2976. * Fix architecture detection
  2977. * Converted history storage to the UCL format
  2978. * Allow flexible number of rows in history
  2979. * Fix action badges in WebUI
  2980. * Add universal cryptobox hash API
  2981. * Migrated to the optimized blake2b implementation adopted from Andrew Moon
  2982. * Allow explicit loading of specific modules
  2983. * Always load settings module
  2984. * Allow to add symbols from settings
  2985. * Fix double free in the controller fuzzy learn command
  2986. * Avoid endless loop when cannot open sqlite db
  2987. * Updated libucl
  2988. 1.0.6:
  2989. * Fix build on i386
  2990. * Update CentOS7 service file patch (by @fatalbanana)
  2991. * Fix path to rspamadm in Debian init script (by @fatalbanana)
  2992. * Fix broken '_SC_GETPW_R_SIZE_MAX' on FreeBSD
  2993. * Fix portability issues
  2994. * Use cryptobox chacha for libottery
  2995. * Better support of 32 bit builds
  2996. * Fix header name tokens setup
  2997. * Fix levenstein distance method for words
  2998. * Add workaround for old libevent (#400)
  2999. * Fix microseconds in termination timer
  3000. * Fix some more issues with fixed strings
  3001. * Explicitly test CPU instructions even after CPUID call
  3002. * Do not check out of boundary memory
  3003. * Do not output broken emails
  3004. * Fix unknown symbols registration
  3005. * Handle SIGILL using longjmp
  3006. * Block signals when exiting event loop
  3007. * Fix incorrect allocation size
  3008. * Slightly optimize alignment
  3009. * Restore rspamd -t for compatibility
  3010. * Add more sanity checks for emails
  3011. 1.0.5:
  3012. * Add rspamd control interface:
  3013. - support `stat` command to get runtime stats of rspamd workers
  3014. - support `reload` command to reload runtime elements (e.g. sqlite3 databases)
  3015. * Rework curve25519 library for modular design:
  3016. - add Sandy2x implementation by Tung Chou
  3017. - fix CPU detection for variables loading assembly
  3018. - add testing for curve25519 ECDH
  3019. * New fixed strings library
  3020. * Add `R_SUSPICIOUS_IMAGES` rule
  3021. * Enable mmap in sqlite3
  3022. * Use new strings in the HTTP code
  3023. * Improve google perftools invocation
  3024. * Improve performance profiling in http test
  3025. * Reorganize includes to reduce namespace pollution
  3026. * Allow specific sections printing in configdump command
  3027. * Rework workers signals handlers to be chained if needed
  3028. * Update socketpair utility function
  3029. * Add control_path option for rspamd control protocol
  3030. * Fix ownership when listening on UNIX sockets
  3031. * Rework signals processing in main
  3032. * Remove extra tools from rspamd (they live in rspamadm now)
  3033. * Remove global rspamd_main
  3034. * Add global timeout for the overall task processing (8 seconds by default)
  3035. * Sanitize NULL values for fuzzy backend
  3036. * Store NM between encrypt/decrypt
  3037. * Add textpart:get_words_count method
  3038. * Fix generic DNS request in lua
  3039. * Tune hfilter weights
  3040. * Add support of IPv6 in hfilter
  3041. * Fix parsing of HTTP headers with IP addresses
  3042. * Sync with the recent libucl
  3043. * Various minor bugfixes
  3044. 1.0.4:
  3045. * Add configdump routine to rspamadm
  3046. * Implement retransmits for fuzzy_check plugin
  3047. * Fix events processing for learning anf checking fuzzy hashes
  3048. * Avoid dependency on unneeded and uncompatible glib include
  3049. * Add `historyreset` command to the controller
  3050. * Fix loading of tokenizer config from dump (#389)
  3051. * Add sorting hints for the history
  3052. * Allow custom lua scripts for users/languages extraction (#388)
  3053. * Do not add FORGED_RECIPIENTS when 'To' is missing (#387)
  3054. * Do not add R_UNDISC_RCPT when 'To' is missing (#387)
  3055. * Add encryption to fuzzy check plugin
  3056. * Add encryption for fuzzy storage
  3057. * Add new epoch for encrypted fuzzy request
  3058. * Add encryption for `rspamd.com` storage
  3059. * Remove gmime processing for LDA mode as it is deadly broken
  3060. * Add routine to find end of headers position in mime messages
  3061. * Fix LDA headers folding
  3062. * Init libraries in rspamc client as well to avoid locale issues
  3063. * Avoid collision with locally installed includes
  3064. * Allocate and free memory with the same allocator in rspamadm (#385)
  3065. * Preserve expired fuzzy hashes counter
  3066. * Improvements in webui:
  3067. - Add favicon.ico
  3068. - Rework history table
  3069. - Fix sorting for the history
  3070. - Migrate to bootstrap 3 and jquery 2
  3071. - Fix css bugs
  3072. - Add glyphicons
  3073. - Add reset history
  3074. - Improve history buttons
  3075. - Redraw graph to avoid display issues
  3076. - Webui is now MIT licensed to match licensing policy of rspamd
  3077. 1.0.3:
  3078. * Fix piechart clean slice (#380)
  3079. * Fix controller crashes when GString is reallocated (#381)
  3080. * Correctly set locale before start
  3081. * Set C locale for numeric values
  3082. * Add rspamadm routine:
  3083. - add `pw` command to manage passwords
  3084. - add `help` command for displaying help
  3085. - add `configtest` command to check configuration files
  3086. - add `keypair` command for generating encryption keys
  3087. - add `fuzzy_merge` routine to merge fuzzy sqlite databases
  3088. - add a simple manual page for rspamadm
  3089. * Allow metric registration for composite expressions
  3090. * Add strict mode for configtest
  3091. * Add logger counters
  3092. * Save and show learned messages count (#383)
  3093. * Add `no_stat` flag
  3094. * Add `task:set_flag` and `task:get_flags` (#382)
  3095. * Enable foreign keys in sqlite3
  3096. * Remove orphaned shingles from fuzzy storage
  3097. * Optimize synchronization steps for fuzzy storage
  3098. * Allow delayed conditions registration
  3099. * Add lua API for conditions registering
  3100. 1.0.2:
  3101. * Fix critical bug in webui that prevents password from being sent
  3102. * Rework webui view:
  3103. - Switch to d3.js for graphs
  3104. - Improve piechart look
  3105. - Rework colors for piechart
  3106. - Fix layout for symbols
  3107. - Fix refresh button
  3108. * Add descriptions for whitelist maps
  3109. * Fix build on arm (#379)
  3110. * Fix issue with the last element in the radix trie
  3111. * Add more tests for radix trie algorithm
  3112. * Allow to extract URLs from query strings of other URLs (#361)
  3113. * Initialize rrd fields before writing to file
  3114. * Fix double free if no password has been specified
  3115. 1.0.1:
  3116. * Add writing to rrd from the controller
  3117. * Fixed lots of bugs in rrd code
  3118. * Adopt new DNS API in hfilter plugin (by @AlexeySa)
  3119. * Allow only one controller process to manage rrd file
  3120. * Set event base for fuzzy calls
  3121. * Improve fuzzy IO errors logging
  3122. * Add rra extraction function to rrd library
  3123. * Add graph handler to the controller
  3124. * Cache correct passwords to avoid too high CPU usage when working with webui
  3125. * Controller sockets are owned by router do not export them to task
  3126. * Optimize logging by skipping hash table search if it's empty
  3127. * Fix loading issue with broken statfiles
  3128. * Print assertions from glib to rspamd logger
  3129. * Load legacy `lua/rspamd.local.lua`
  3130. * Update webui with some fixes to learning and scanning
  3131. 1.0.0:
  3132. * Rework symbols processing:
  3133. - Improve sorting logic for symbols
  3134. - Organize processing into multiple stages
  3135. - Added asynchronous watchers for symbols
  3136. - Added ability to organize dependencies between symbols
  3137. * Fixed URL redirector:
  3138. - Use optimized POE loop
  3139. - Organize dependencies
  3140. - Fix startup
  3141. * New sqlite3 backend:
  3142. - Allow to have per-languages and per-user statistics
  3143. - Allow sqlite3 to be used as statistics backend
  3144. * Store tokenizer configuration within statfiles
  3145. * Improve bayes statistics:
  3146. - Use headers and images metainformation in bayes
  3147. - Suggest using of pre-processed tokens for statistics
  3148. - Fix tokens normalization for OSB algorithm
  3149. * Rewrite url parsing:
  3150. - Fix numerous issues with url extraction and normalization
  3151. - Fix mailto urls
  3152. * Fix settings plugin to allow custom actions scores
  3153. * Improve rbl plugin
  3154. * Allow capturing patterns in rspamd lua regexp library
  3155. * Add GTUBE support
  3156. * Fix spamc legacy support
  3157. * Add DKIM support to RBL module
  3158. * Fix issues with multiple DKIM signatures
  3159. * Fix issue if rspamd cannot create statfiles (#331)
  3160. * Rework parts and task structure:
  3161. - Now text_parts, parts and received are arrays
  3162. - Pre-allocate arrays with some reasonable defaults
  3163. - Use arrays instead of lists in plugins and checks
  3164. - Remove unused fields from task structure
  3165. - Rework mime_foreach callback function
  3166. - Remove deprecated scan_milliseconds field
  3167. * Add ip_score plugin support (not enabled by default):
  3168. - Can check for asn/country and network using DNS lookups
  3169. - Can store and load reputation from redis server
  3170. * Improve PARTS_DIFFER rule to count merely different words
  3171. * New HTML parser:
  3172. - Parses HTML parts using a set of state machines
  3173. - Extracts useful data and exports it to lua functions:
  3174. + Styles
  3175. + Images
  3176. + URLs
  3177. + Colors
  3178. + Structure elements
  3179. - Added HTML rules for some checks
  3180. * New version of LUA DNS API
  3181. * Table versions of many functions in LUA API
  3182. * Improve rspamc client:
  3183. - Print execution time
  3184. - Allow executing of external commands and passing output to them
  3185. - Allow mime output mode when rspamc alters message according to rspamd
  3186. checks and send it to an external command or stdout
  3187. * Allow scanning of local files using HTTP requests
  3188. * Rework configuration system:
  3189. - Rules are now moved from the $CONFDIR to $RULESDIR to avoid ambiguity
  3190. - All modules configurations are now split in $CONFDIR/modules.d/* to
  3191. simplify upgrades
  3192. - Move hfilter to plugins
  3193. - Allow plugins and rules to define default scores to simplify metrics
  3194. setup
  3195. - Include overrides for all modules to honor local/automatic parameters
  3196. - Tune scores for many modules
  3197. * Rework and enable DMARC plugin
  3198. * Add whitelist plugin for SPF/DKIM/DMARC based whitelisting
  3199. * Add some common domains to whitelists shipped with rspamd
  3200. * Rework logging:
  3201. - Now each log entry supports module name and a `tag`. Tag is used to
  3202. identify unique objects (such as tasks) when checking log files
  3203. - It is possible to turn on debugging for the specific modules
  3204. - Systemd logging is fixed
  3205. * Improve spamassassin plugin.
  3206. - Now headers are matched more like SA
  3207. - Improve support of Message-ID
  3208. - Add support of ToCc header type
  3209. - Fix :addr and :name in headers regexps
  3210. * Resurrect rrd support code
  3211. * Save controller stats between restarts
  3212. * Fixed tonns of bugs
  3213. * Added tonns of minor improvements and features
  3214. * Added more unit tests
  3215. * Create functional tests framework
  3216. * Added documentation for missing modules
  3217. * Added rpm/deb repositories and scripts
  3218. * Updated WebUI and libucl externals
  3219. 0.9.10:
  3220. * Do not dereference null pointer on learning.
  3221. * Fix some extreme cases in BAYES.
  3222. * Add a workaround to avoid bad HTML messages breaking.
  3223. * Build with -O2 flags by default.
  3224. * Add constraints to limit DNS requests count per task.
  3225. * Add workaround for SURBL DNS flood.
  3226. * Set error if rspamd cannot learn anything.
  3227. 0.9.9:
  3228. * Don't use RWL_SPAMHAUS_WL (unknown result) for whitelisting (by @fatalbanana)
  3229. * Import updated public suffix list (by @fatalbanana)
  3230. * Remove debug message
  3231. * Fix settings (by @fatalbanana)
  3232. * Remove duplicated symbol registration
  3233. * Use WAL for fuzzy storage
  3234. * RBL fixes (by @fatalbanana):
  3235. - silence errors;
  3236. - yield unknown results from RBLs;
  3237. - fix scoring for DNSWL;
  3238. - fix use of RBL name as symbol;
  3239. - ignore RBL names that would not be yielded;
  3240. * Support captures in regular expressions
  3241. * Add captures support to lua_regexp
  3242. * Support dist on FreeBSD and Darwin
  3243. * Add RCVD_IN_DNSWL_NONE as whitelisting exclusion (by @fatalbanana)
  3244. * Multiple fixes to URL detection:
  3245. - support port definition;
  3246. - fix query and path recognition;
  3247. - fix parsing of multiple slashes in URL;
  3248. - fix parsing query just after port;
  3249. - fix path field in `url:to_table` method;
  3250. - improve support of IP based URLs.
  3251. * Set ignore_whitelists = true for RECEIVED_SPAMHAUS_XBL (by @fatalbanana)
  3252. * Add GTUBE support
  3253. * Ignore User header in SA mode
  3254. 0.9.8:
  3255. * Fix critical bug in bayes classifier (#305)
  3256. * Fix critical bug in RBL module (by @fatalbanana)
  3257. * Fix and rework settings plugin.
  3258. * Fix get_all_opts for a case of non-iterable options.
  3259. * Use tld for redirector's matching.
  3260. 0.9.7:
  3261. * Add whitelist_exception setting to RBL module (by @fatalbanana)
  3262. * Don't use RWL_MAILSPIKE_POSSIBLE or DNSWL_BLOCKED for whitelisting (by
  3263. @fatalbanana)
  3264. * Fix extreme cases in bayes classifier.
  3265. * Fix parsing of urls with '?' at the end of hostname.
  3266. * Update interface.
  3267. * Fix number of issues with webui interaction.
  3268. * Fix saving maps.
  3269. * Allow user@ and @domain matches in multimap.
  3270. * Fix issues with bounces From processing.
  3271. * Fix abs/fabs misuse.
  3272. * Fix builds on suse and arch linux distributions.
  3273. 0.9.6:
  3274. * Fix memory leak if mime cannot be parsed.
  3275. * Fix dkim cache expiration.
  3276. * Fix issues with redirector HTTP response.
  3277. * Fix abnormal connection closing with certains messages with a high score
  3278. (issue #296)
  3279. * Fix redirector installation.
  3280. * Use specific POE loop for some systems.
  3281. * Fix number of issues in URL redirector.
  3282. * Fix selecting URLs for sending to redirector.
  3283. 0.9.5:
  3284. * Avoid double free when extending HTTP message.
  3285. * Fix double free if multiple classifiers are defined.
  3286. * Fix misprint in spamassassin plugin.
  3287. * Fix cpuid invocation on i386.
  3288. * Fix ownership issues for zero-copy decode.
  3289. * Allow __len metamethod on rspamd{text}.
  3290. * Add base64 decoding lua utility.
  3291. * Fix build on FreeBSD
  3292. * Skip spaces at the beginning of mime messages.
  3293. * DBL_ABUSE_REDIR should not have significant weight.
  3294. * Allow to split by lua_regexp rspamd{text} objects.
  3295. * Allow to specify custom stop pattern for lua_tcp.
  3296. 0.9.4:
  3297. * Fix critical bugs in tokenization algorithm
  3298. * Write unit tests for tokenization
  3299. * Add documentation for lua_tcp
  3300. * Switch off legacy tokenization by default.
  3301. * Fix critical bugs in words normalization
  3302. * Add lua bindings to tokenizer.
  3303. * Implement storing of HTTP headers inside task
  3304. * Add lua API to accerss HTTP headers data
  3305. * Implemented base64 encoding suitable for MIME
  3306. * Use caseless hash and equal functions for HTTP request headers.
  3307. * Improve debian architectures support (by @dottedmag)
  3308. 0.9.3:
  3309. * Revert incorrect regexp change that broke the default rules
  3310. * Fix lua_tcp module
  3311. 0.9.2:
  3312. * Fix error on spawning unique workers.
  3313. * Add preliminary version of generic LUA TCP requests API.
  3314. * Use lua 5.1 if luajit is not available (Arm64, PowerPC, s390x etc)
  3315. * Fix fuzzy mime strings with only type.
  3316. * Improve thunderbird sanity checks.
  3317. * Fix critical bug on matching regular expressions.
  3318. * Make hiredis optional dependency.
  3319. * Fix multiple bugs in daemon reloading
  3320. 0.9.1:
  3321. * Restore utf8 validation for regular expressions to avoid crashes
  3322. * Fix symbols displaying in the interface
  3323. * Add symbol groups to the interface
  3324. * Fix maps ID parsing in the controller
  3325. * Add multimap and regexp modules documentation
  3326. * Backport fixes from libucl
  3327. * Fix debian package (by @dottedmag)
  3328. * Rework XXH32 invocations
  3329. 0.9.0:
  3330. * Add support of the fast and secure protocol level encryption:
  3331. - curve25519 is used for key exchange;
  3332. - chacha20/poly1305 cryptobox construction for bulk encryption;
  3333. - zero latency overhead;
  3334. - encrypting and balancing HTTP proxy worker
  3335. * Rework expressions and create new expressions library:
  3336. - aggressive optimizations based on the abstract syntax tree;
  3337. - abstract expressions support (regular expressions, functions, lua modules
  3338. composites and so on)
  3339. - New comparison and '+' operators support
  3340. - New greedy algorithm to minimize execution time of expressions and
  3341. all symbols
  3342. - Dynamic expressions benchmark and reoptimizations
  3343. * Many improvements to the LUA API:
  3344. - reworked logger module allowing to do pretty print of the most of lua
  3345. types (including tables and userdata classes)
  3346. - reworked lua redis and lua HTTP to support more features
  3347. - added opaque type for passing large text chunks without copying
  3348. - new regexp module with many auxiliary functions (e.g. `re:split`)
  3349. * LuaJIT is now the default requirement for rspamd allowing to speed up lua
  3350. execution by a large margin (however, plain lua is still supported)
  3351. * New plugins:
  3352. - spamassassin rules plugin that allows to load and re-use the most of
  3353. SA rules natively
  3354. - DMARC plugin that evaluates SPF and DKIM policies to the domain policies
  3355. - many old plugins has been reworked to implement new features and improve
  3356. stability
  3357. * New aho-corasic trie implementation from @mischasan that allows to load and
  3358. use hundreds of thousands of patterns with no influence on load
  3359. * Support of PCRE JIT and PCRE JIT fast path modes that significantly improves
  3360. the performance of regular expressions if supported by PCRE
  3361. * New URLs parser and extractor:
  3362. - removed legacy code that was useless for url finding
  3363. - reworked algorithms of URL parsing for more precise and accurate results
  3364. - added top-level-domains tree from http://publicsuffix.org
  3365. - improved emails parsing
  3366. - removed many phishing false positives due to TLD tree check
  3367. * New statistics infrastructure:
  3368. - created a separate layer of statistic library
  3369. - improved OSB-Bayes by re-weighting tokens according to the original
  3370. academic paper and `crm114` implementation, which reduced false positives
  3371. rate significantly
  3372. - created learn cache to avoid double learning of statistics and providing
  3373. an efficient way to re-learn class for a message
  3374. - created abstract layers for different statistics backends
  3375. - implemented new tokenization algorithms with fast or secure (siphash)
  3376. hashes to generate statistics features
  3377. * Reworked utf8 tokenization that previously corrupted all UTF8 words (minor
  3378. incompatibility with old fuzzy hashes with utf-8 symbols)
  3379. * SPF module has been completely rewritten to support complex cases of
  3380. `include` and `redirect` within SPF records
  3381. * DKIM module now supports multiple signatures
  3382. * Controller passwords can now be stored encrypted by `PBKDF2-HMAC` in the
  3383. configuration file
  3384. * Many hand-written HTTP clients has been replaced with the common rspamd
  3385. http module
  3386. * New test framework:
  3387. - import lua `telescope` test framework
  3388. - add unit tests for many rspamd modules and routines
  3389. - create a unit test for each possible bug found
  3390. - use luajit ffi for testing C code
  3391. - added preliminary support of functional testing by creating tasks from lua
  3392. * Randomize hash seed to avoid certain hash tables vulnerabilities
  3393. * Documentation improvements:
  3394. - added documentation for the vast majority of rspamd modules
  3395. - added documentation for rspamd protocol
  3396. - added documentation for the most of rspamd LUA extensions
  3397. * Fixed tonns of bugs and memory leaks
  3398. * Added tonns of minor features
  3399. 0.8.3:
  3400. * Various critical fixes in distribution (by @dottedmag and @fatalbanana)
  3401. * Fixed bugs in url detector to parse certain patterns
  3402. * Add default host and helo for a client
  3403. * Some sanity checks for tokenizer and classifier
  3404. * Reiterate on systemd support
  3405. * Fix missing symbol registration
  3406. * Add support of spamc compatible output
  3407. * Filter double-dots in rbl.lua validate_dns (by @fatalbanana)
  3408. * Update ucl submodule due to critical bugfix
  3409. 0.8.2:
  3410. * Create fuzzy db if it does not exist
  3411. * Fix: Centos init script: configtest() (by @AlexeySa)
  3412. * Enable one_shot for RECEIVED_SPAMHAUS_XBL - Fixes #102 (by @fatalbanana)
  3413. * Update Exim patch (by @fatalbanana)
  3414. * Fix processing of unix sockets.
  3415. * Allow applying settings to authenticated users (by @fatalbanana)
  3416. * Make settings priorities work as documented (by @fatalbanana)
  3417. * Fix race condition in symbols planner
  3418. * Add DNSWL_BLOCKED symbol (by @fatalbanana)
  3419. * Make Exim pass usernames to rspamd (by @fatalbanana)
  3420. * Update RBL module (by @fatalbanana):
  3421. - fix indentation;
  3422. - collapse loops;
  3423. - avoid calling for un-needed information;
  3424. - allow disabling RBLs for authenticated users
  3425. * once_received.lua: Fix indentation & add exclusion for authenticated users (by @fatalbanana)
  3426. * hfilter.lua: Add exclusion for authenticated users (by @AlexeySa)
  3427. * Updates to hfilter rules (by @AlexeySa)
  3428. * Set empty <> user or addr for msgs without FROM (by @eneq123)
  3429. * Fix: attempt to index field '?' (a nil value) (by @eneq123)
  3430. * Fix: if not exist Date-header (by @AlexeySa)
  3431. * Add task:get_content() method.
  3432. * rbl.lua: Ignore private IP space (by @fatalbanana)
  3433. * Allow to check radix maps from lua by rspamd{ip}
  3434. * Make local exclusions configurable per-RBL (by @fatalbanana)
  3435. * Add rspamd_config:radix_from_config() (by @fatalbanana)
  3436. * Support emails dnsbl in rbl (by @fatalbanana)
  3437. * Complete rework of url extraction logic
  3438. * Allow customizations for unix sockets. (fixes #182)
  3439. * Set lua path according to rspamd settings.
  3440. * Import lua-functional for plugins stuff.
  3441. * Completely rewrite multimap plugin in functional style.
  3442. * Fix FORGED_MUA_THUNDERBIRD_MSGID (fixes #186)
  3443. * Check IPv6 addresses at dnswl.org and Spamhaus whitelist (by @fatalbanana)
  3444. * Add lowercase utility for utf8 strings.
  3445. * Various fixes to build system
  3446. * Updated debian configuration infrastructure (by @dottedmag)
  3447. 0.8.1:
  3448. * Add sqlite and perl as dependencies for RPM/Debian packages (by @fatalbanana)
  3449. * Remove whitelist.lua from RPM file list (by @fatalbanana)
  3450. * Make Exim pass hostnames to rspamd (by @fatalbanana)
  3451. * Fix building on Fedora (by @fatalbanana)
  3452. * Add toggle for disabling installation of systemd units on Linux (by @fatalbanana)
  3453. * Fix double format rounding that caused output corruption (reported by @fatalbanana)
  3454. * Revert broken change for destructors ordering that led to memory corruption
  3455. * Do not reset symbols case of settings if parsed from lua (reported by @andrejzverev)
  3456. * Fix build on SunOS (by @wiedi)
  3457. * Fix multiple crashes on broken DKIM DNS records
  3458. * Fix critical issue with composites weights removing
  3459. * Fix memory corruption in composites processing code
  3460. * Ignore non-SPF TXT records when parsing SPF includes
  3461. 0.8.0:
  3462. * New fuzzy check logic:
  3463. - use shingles algorithm for fuzzy matching
  3464. - use blake2 instead of md5 for larger output space
  3465. - combine fuzzy and strict matching
  3466. - allow to organize private storages by means of keys
  3467. - preserve compatibility with previous versions
  3468. * New fuzzy storage:
  3469. - use sqlite instead of own memory based hash tables
  3470. - rework commands interface
  3471. - add conversion from the old format
  3472. - add fuzzy match by shignles
  3473. - support old rspamd versions
  3474. * Add lemmatizing for words used in fuzzy hashes that allows to improve match
  3475. quality by using of the first forms of all words
  3476. * Rework language detection
  3477. * Fix several critical bugs, memory leaks and deadlocks:
  3478. - memory leak in HTML nodes parsing
  3479. - deadlock in logger code
  3480. - deadlock in signals processing
  3481. - crashes in fuzzy_storage
  3482. - crashes in tokenizers if the input was empty
  3483. * Import new libucl with several bugfixes and improvements
  3484. * Support listening on ipv6 addresses only
  3485. * Fix macro expansion in SPF module
  3486. * Several bugfixes in DKIM module
  3487. * Add load headers support for mime parts to the lua API
  3488. * Add documentation for:
  3489. - workers in general
  3490. - fuzzy_storage worker
  3491. - fuzzy_check plugin
  3492. - mimepart and textpart lua API modules
  3493. 0.7.6:
  3494. * Apply boundary fix for dkim simple canonization
  3495. * Fix ping command
  3496. * Return nil if header was not found in lua_task
  3497. * Fix hang in upstreams revive logic
  3498. * Decode entitles when normalizing HTML parts
  3499. * Fix logic of finding URLs in HTML parts
  3500. * Do not include \0 into length of text when performing conversion to utf8
  3501. * Fix raw vs parsed reperesentations
  3502. Raw parts are now:
  3503. - decoded b64/qp, but *NOT* converted to utf-8
  3504. Processed parts are now:
  3505. - converted to UTF-8
  3506. - normalized if needed (e.g. HTML tags are stripped)
  3507. * Rework DKIM canonization to line based
  3508. * Fix fuzzy hashes adding
  3509. * Use more specific hash function for fuzzy
  3510. * Fix leaking of iconv descriptors
  3511. * Fix PTR resolving in lua resolver
  3512. * Rework spf module.
  3513. - Copy data to memory pool as cached record might be destroyed causing
  3514. freed memory being passed to the protocol output (use after free)
  3515. - Allow SPF_NEUTRAL policy to be handled separately
  3516. - Add R_SPF_NEUTRAL to the default config
  3517. * Rework `register_symbols` function
  3518. * Allow to disable components of hfilter
  3519. 0.7.5:
  3520. * Fix owner when creating folder /run/rspamd (by @sfirmery)
  3521. * Fix IP validity checks
  3522. * Decode URLs obtained from HTML tags
  3523. * Fix crash with unweighted upstreams
  3524. * Stop processing headers in parts
  3525. * Set sockaddr.sa_family properly when connectig to upstreams
  3526. * Fix reload issues in surbl and fuzzy_check (reported by @citrin)
  3527. * Fix timeouts in redirector
  3528. * Improve lua errors reporting
  3529. * Fix lua closures processing in libucl
  3530. * Rework calling of lua functions from regexp module
  3531. * Choose raw regexp for raw headers
  3532. * Rework conversion to utf since glib one is broken
  3533. * Ignore SGML style tags in html
  3534. * Fix old bug with non-capturing https urls
  3535. * Fix memory corruption on fuzzy reload (reported by @citrin)
  3536. * Fix percents display in rspamc
  3537. * Fix buffer update for DKIM
  3538. * Do not validate utf for raw headers
  3539. 0.7.4:
  3540. * Fix build under *BSD
  3541. * Detect HAN unicode script
  3542. * Implement language detection heuristic for text parts
  3543. * Fix time output in history
  3544. * Improve piechart coloring
  3545. * Fix \r\n conversion in DKIM module (reported by @citrin)
  3546. * Try to detect systems with no IPv6 support
  3547. * Fix multiple/single values in use settings (reported by @citrin)
  3548. * Rework IP addresses in upstreams:
  3549. - Select ipv4/unix addresses if they exist and use ipv6 for ipv6 only
  3550. upstreams (since the support of ipv6 is poor in many OSes and
  3551. environments)
  3552. - Free IP list on upstream destruction
  3553. - Add test cases for addresses selection
  3554. - Allow adding of free form IP addresses to upstreams
  3555. * Fix endianness in lua_radix search (reported by @citrin)
  3556. * Soft shutdown should also set wanna_die flag (reported by @citrin)
  3557. * Stop use-after-free in event loop termination
  3558. * Fix processing of very short messages in DKIM (reported by @citrin)
  3559. * Detect systems without shared mutexes
  3560. * Fix issues with PTR and MX elements in SPF parser (reported by @citrin)
  3561. 0.7.3:
  3562. * New upstreams code:
  3563. - simplify upstreams API;
  3564. - unify strings parsing in upstreams definition;
  3565. - add configuration options for the upstreams;
  3566. - for failed upstreams re-resolve their addresses;
  3567. - use all resolved addresses for an upstream (round-robin);
  3568. - implement stable hashing and use it by default for upstreams;
  3569. - add unit test for upstreams module.
  3570. * Rework signals processing in all rspamd workers:
  3571. - signals are now processed in the event loop;
  3572. - implement the most common signal handlers for all workers;
  3573. - add callbacks for workers specific signal handlers
  3574. * Fix critical issue with fuzzy storage:
  3575. Fuzzy stroage could not save any hashes on termination due to bugged
  3576. signals handling
  3577. * Fix roll history IP storage
  3578. * Rework ipv4/ipv6 handling in parsing addresses:
  3579. - turn off support of IPV6_V6ONLY socket option;
  3580. - create ipv6 socket prior to ipv4 one to handle systems with v6/v4
  3581. sockets enabled (Linux)
  3582. * Remove CBL as it's wholly included in Spamhaus XBL (by @fatalbanana)
  3583. * Remove nszones.com fake RBL (by @citrin)
  3584. * Fix upstreams interaction for fuzzy_check
  3585. * Verify spf PTR records (reported by @citrin)
  3586. * Fix spf MX records parsing
  3587. * Add compatibility for old libevent (by @yellowman)
  3588. * Sync bugfixes from libucl
  3589. 0.7.2:
  3590. * Convert all maps to the compressed radix trie
  3591. * Allow IPv6 addresses in IP maps
  3592. * Remove dynamic items support from symbols cache
  3593. * Allow hex encoded output of strings
  3594. * Fix bug with control connections count
  3595. * Process fuzzy weight correctly (reported by @fatalbanana)
  3596. * Remove extra reference retain of http connection on error
  3597. * Remove deprecated options from the default config
  3598. * Add `one_shot` attr to metric's symbols
  3599. * Doc: add documentation for metrics
  3600. * Add Upstart job to debian packaging (by @CameronNemo)
  3601. * Config: improve SURBL symbols descriptions (by @citrin)
  3602. * Config: reflect SURBL changes (by @citrin):
  3603. - Outblaze removed, malware moved to separate list:
  3604. http://www.surbl.org/news/internal/MW-malware-sublist-added-to-multi
  3605. * Fix C modules initialization on restart
  3606. * Treat single IP as a single IP in radix lists (reported by @citrin)
  3607. * Do not touch file and core limits if not asked explicitly (reported by @citrin)
  3608. * Improve logging for fuzzy errors
  3609. * Block SIGPIPE for HTTP writing
  3610. * Doc: update manual pages
  3611. * Fix HTTP connection termination
  3612. * Reduce default number of parallel requests to 8
  3613. * Sync with libucl include features
  3614. 0.7.1:
  3615. * Fix typo in stat output.
  3616. * Fix issues with includes crossing with the system includes
  3617. * Restore testing framework
  3618. * Add radix trie test suite
  3619. * Implement new path-compressed radix trie.
  3620. - The performance benefit over the old algorithm is about 1.5 times.
  3621. - Memory usage is significantly lower as well.
  3622. - Now radix trie can accept any IPv4/IPv6 values
  3623. * Various improvements to the memory pools code
  3624. * Fix writing reply to a client when no filters are defined
  3625. * Write base32 encoded fuzzy
  3626. * Fix 'soft reject' action
  3627. * Fix rspamd reload and modules reconfiguration
  3628. * Fix subject rewriting for the default subject
  3629. * Fix states for processing task and pre-filters
  3630. * Fix issues with connection closing
  3631. * Fix crashes in rdns
  3632. * Fix ratelimit pre-filter
  3633. * Update exim patch.
  3634. - Update to the recent exim version
  3635. - Strip extra leading src/ from the patch
  3636. - Remove sendfile since it was broken
  3637. - Fix rspamd spam report for exim
  3638. * Improve documentation
  3639. 0.7.0:
  3640. * Use HTTP protocol for all operatiosn
  3641. * Webui worker is now removed and controller works as webui
  3642. * Allow to serve static files via controller by option `static_dir`
  3643. * Rspamd interface is now a part of rspamd
  3644. * Rspamc client has been rewritten to use HTTP and non-blocking mode
  3645. allowing to start multiple operations simultaneously (see `-n` option)
  3646. * Lua API was completely reworked to satisfy modern standards of LUA:
  3647. * Module `lua-message` was removed
  3648. * Reduced number of superglobals registered by rspamd
  3649. * Many functions has been redesigned
  3650. * Symbols registration is now more convenient
  3651. * Users settings has been rewritten as lua plugin
  3652. * Reworked headers system as gmime's based one misses many headers and is
  3653. very slow to get headers values
  3654. * Reorganized code and removed embedded jannsson by using UCL for all json
  3655. parsing
  3656. * Migrated to `librdns` for DNS resolving that improves concurrency for
  3657. DNS requests significantly
  3658. * Fixed tonns of bugs in MIME processing
  3659. * Improved metrcis and default symbol's weights
  3660. * Added new RBL's
  3661. * Fixed a number of issues in the modules
  3662. * Removed several memory leaks found
  3663. * Fix unicode processing
  3664. * Fix fuzzy checking for unicode parts
  3665. * Significantly improve documentation and especially LUA API docs
  3666. * See migration notes at https://rspamd.com/doc/migration.html
  3667. 0.6.8:
  3668. * Controller now listen for localhost and not for 127.0.0.1 by default
  3669. * Allow FCrDNS-style RBL lookups (by @fatalbanana)
  3670. * Reduce threshold for parts_differ function.
  3671. * Fix hostname lookup for rdns rbl (by @AlexeySa)
  3672. * Fix HFILTER_URL_ONELINE to reduce false positive rate.
  3673. * Fix whitelist module.
  3674. * Allow override system predefined settings without touching system ones
  3675. by .try_include macro (by @andrejzverev)
  3676. * Check for [ip.address]-style HELO and suppress lookups. (by
  3677. @fatalbanana)
  3678. * Optimize hfilter (by @AlexeySa)
  3679. * Fix issue with random numbers generator in dns.
  3680. * Use more clever time values to setup entropy.
  3681. * Synced with the recent libucl.
  3682. 0.6.7:
  3683. * Use ChaCha20 for DNS generator (more secure DNS id)
  3684. * Unknown symbols now has zero weight and not 1.0
  3685. * Fix fuzzy hashes expire time
  3686. * Fix critical issue in statfiles on FreeBSD 9 (and some other platforms)
  3687. * Add .include_map macro to ucl parser
  3688. * Update libucl
  3689. * Fix headers end detection for DKIM module
  3690. * Fix a bug in received headers parser
  3691. * Validate IP addresses before pushing them to lua
  3692. * Start new documentation project
  3693. * Fixed tonns of other minor bugs
  3694. * Start to prepare for 0.7 with HTTP protocol and new settings
  3695. 0.6.6:
  3696. * Removed issue with BUFSIZ limitation in the controller output
  3697. * Simplify logging symbols escaping
  3698. * Adjusted weights for several rules
  3699. * Improve spamhaus rbl support
  3700. * Removed PBL for received headers checks
  3701. * Added hfilter module that performs various HELO and IP checks.
  3702. * Rspamd can now be reloaded by HUP signal
  3703. * Fuzzy storage should expire hashes properly
  3704. * Build system has been reworked for better supportof pkg-config
  3705. * Various minor bugfixes
  3706. 0.6.5:
  3707. * Fixed critical bug in DNS resolver, introduced in 0.6.4
  3708. * Improved multimap and rbl plugins to skip
  3709. * Add dns_sockets option for tuning sockets per server in DNS resolver
  3710. * Improved packages for rspamd
  3711. 0.6.4:
  3712. * Added io channels for DNS request to balance load and reduce id
  3713. collisions chance
  3714. * Fixed a bug in SPF filter that may cause core dump in specific
  3715. circumstances
  3716. * FIxed default config for rbl module
  3717. * It is possible to get a list of rspamc commands with their descriptions
  3718. * Added SORBS bl to the default config
  3719. * 2tld file for surbl module has been significantly extended
  3720. * Perl modules has been removed from the code.
  3721. * Fixed an issue in libucl when parsing macros
  3722. 0.6.3:
  3723. * Fixed issues with DNS:
  3724. - labels decompression algorithm was fixed;
  3725. - added resolve_mx to lua API;
  3726. - fixed modules that use DNS.
  3727. * Lua modules once_received and emails reworked for new resolver API and UCL.
  3728. * Debian package was polished.
  3729. * Fixed a bug in fuzzy_check module that prevents correct processing messages
  3730. without valid parts.
  3731. 0.6.2:
  3732. * Fuzzy check module has been reworked:
  3733. - now fuzzy_check operates with a group of rules, that define which
  3734. servers sre to be checked;
  3735. - it is possible to specify read_only groups to avoid learning errors;
  3736. - turn fuzzy_check to one_shot mode permanently;
  3737. - fuzzy_check module configuration is now incompatible with the previous
  3738. versions.
  3739. * Imported bugfixes from libucl.
  3740. * Fixed whitelist plugin.
  3741. * Fixed statfiles resizing.
  3742. * Improved logging initialization order.
  3743. * Fixed race condition in the controller worker.
  3744. 0.6.1:
  3745. * Critical bugfixes:
  3746. - fixed build system;
  3747. - fixed in_class setting in bayes learning;
  3748. 0.6.0:
  3749. * Use UCL instead xml for configuration (https://github.com/vstakhov/libucl)
  3750. * Fix statistics module normalization
  3751. * Rework the many modules for the new configuration:
  3752. - surbl has incompatible configuration;
  3753. - fuzzy_check has incompatible configuration;
  3754. - multimap has now new configuration;
  3755. - received_rbl is removed and replaced by rbl module.
  3756. * Removed deprecated options:
  3757. - statfile_pool_size;
  3758. - action and required/reject score for a metric.
  3759. * Simplify build system and unify configuration for all platforms.
  3760. * Improved URL detector (reduced false positive rate).
  3761. * Lua 5.2 is now the default and fully supported version.
  3762. * Tons of bugfixes and minor improvements.
  3763. 0.5.6:
  3764. * Fix bug with counters incrementing in rolling history
  3765. * Detect expl and exp2l as some systems do not have it
  3766. * Support input streams without Content-Length
  3767. * Implement counters output via rspamc and controller interface
  3768. * Fix bug with udp sockets in fuzzy storage
  3769. 0.5.5:
  3770. * New bayes normalizator based on inverse chi-square function
  3771. * Various fixes to fuzzy storage
  3772. * Allow update fuzzy storage only from specific IP addresses
  3773. * Better support of IPv6 and address selection algorithms
  3774. * Add CentOS spec file
  3775. 0.5.4:
  3776. * Fixed issues with diff algorithm
  3777. * Added support of RRD statistics
  3778. * Add webui worker for interface interaction
  3779. * Fix a lot of issues with dynamic conf
  3780. * Fix critical memory leak in settings code
  3781. * Improve stability of the system
  3782. 0.5.3:
  3783. * Added dynamic options
  3784. * Added advanced metaclassfication
  3785. * Added RESTfull API for controller
  3786. * Improved hashing algorithms
  3787. * Various fixes for rspamc client:
  3788. - allow interacting with unix sockets
  3789. - librspamdclient major cleanup
  3790. - bayes is now default classifier
  3791. 0.5.2:
  3792. * Added lua bindings for:
  3793. - basic mime parts, that allows checkign attachements for example;
  3794. - DNS resolver;
  3795. * Existing lua bindings now works without task object allowing to use them
  3796. in custom code.
  3797. * Threads system was reworked to avoid global lua interpreter lock.
  3798. * DKIM module now converts all line endings to CRLF how opendkim does.
  3799. * URL detector is now more accurate for text parts.
  3800. * Several critical bugs and memory leaks were fixed.
  3801. 0.5.1:
  3802. * Added lua worker type to handle network connections in lua.
  3803. * Added lua bindings for async_session, IO dispatcher, memory_pool, and
  3804. worker.
  3805. * Composites can now uses other composites in expressions.
  3806. * Fixes for debian package and for FreeBSD >= 9.1
  3807. * Add support of gmime-2.6 if gmime-2.4 is not found.
  3808. * Improve url detection and phishing detection.
  3809. * Add lua mime_part library to get an access to all message part
  3810. attributes (like filename, length, type).
  3811. 0.5.0:
  3812. * Added SMTP lightweight balancing proxy with XCLIENT support.
  3813. * Added lua bindings for upstreams objects and API.
  3814. * New pre-filters are implemented to support initial checking for messages.
  3815. * Added ratelimit plugin that uses redis protocol to store data.
  3816. * Added ipv6 support to spf and some other modules.
  3817. * Unbreak spf plugin.
  3818. * Allow options with the same name be threated as list.
  3819. * DKIM plugin an parsing code was added.
  3820. * Separate build system to put logic in several shared libraries.
  3821. * Many bugfixes.
  3822. 0.3.2:
  3823. * Add error handling for regexps
  3824. * Fix quit command in controller interface
  3825. * Write symbols weights to rspamc output
  3826. * Improve logic of selecting rspamc version
  3827. * Do not try to parse broken DNS replies
  3828. * Add 'raw' flag to FROM_EXCESS_BASE64 rule (requested by citrin)
  3829. * Output message id in rspamc reply
  3830. * Fix inserting composite symbol
  3831. * Fix output of log line
  3832. * Document composites
  3833. * Add logging for fuzzy checks
  3834. * Add logging for learning
  3835. * Improve logic of learning messages - do not learn more than specific threshold
  3836. * Fix inserting results for symbols that were incorrectly (for example more than 1 time) defined in config file
  3837. * Do not output control characters if output is not terminal
  3838. * Fix some logic errors in learning
  3839. * Consider lua plugins errors as fatal configuration errors
  3840. * Fix writing message id during fuzzy_add command
  3841. * Display weight of symbols correctly
  3842. * Fixes to winnow learning
  3843. * One more try to improve accuracy of winnow algorithm
  3844. * Add bayesian classifier (initial version)
  3845. * Remove normalizer as it is winnow specific thing, so all statistic algorithms now returns value from 0 to 1
  3846. * Some fixes to fuzzy hashes expiration:
  3847. * Fix assertion while look up value in NULL hash (found by cirtin)
  3848. * Fix normalization for systems that have not tanhl function
  3849. * Ignore rfc822 group addresses
  3850. * Move images library to core rspamd
  3851. * Add lua api to access images properties
  3852. * Add post filters to lua API - filters that would be called after all message's processing
  3853. * Add ability to check for specified symbol in task results from lua
  3854. * Add ability to check for metric's results from lua
  3855. * Add ability to learn specified statfile form lua
  3856. * Add ability to extract filename and size of images from lua
  3857. * Fix assertion while extracting internet address
  3858. * Fix races in fuzzy storage
  3859. * Make spf parser case insensitive
  3860. * Add ability to check hashes of selected mime types
  3861. * Add ability to set minimum size in bytes for mime types
  3862. * Add ability to set minimum dimensions for images
  3863. * Assume all text/* content types as text/plain
  3864. * Fix getting data wrapper for gmime24
  3865. * Many fixes to statfile synchronization system
  3866. * Fixed statfile pool initialization and synchronization with disk
  3867. * Prepare 0.3.2
  3868. * Fix Mail::Rspamd::Config for new rspamd features
  3869. * Use Mail::Rspamd::Config in rspamc client
  3870. * Write user's name to rspamd log
  3871. * Prepare rspamd build infrastructure for creating rpm and deb packages
  3872. * Fix depends
  3873. * Add start script for linux systems
  3874. * Fix shared usage of statfiles
  3875. * Add invalidation of statfiles in case of learning, so now statfiles
  3876. * This should fix shared usage of statfile pool by several processes
  3877. * Fix misprint (reported by az)
  3878. * Fix stupid error when all checks can be done in a single pass
  3879. * New trie based url scanner (based on libcamel)
  3880. * Small fixes to rspamd perl client
  3881. * Write fuzzy hashes info to log
  3882. * Add trie interface to lua api
  3883. * Explain sample config and cleanup it
  3884. 0.3.1:
  3885. * Add modules documentation
  3886. * Continue implementing smtp proxy
  3887. * Implement new learning system, now rspamd should be much more intelligent while learning messages
  3888. * Convert statistic sums to use long double for counters
  3889. * Use hyperbolic tangent for internal normalizer
  3890. * In classify normalize result after comparing, not before
  3891. * New symbols sorter
  3892. * Fix strict aliasing while compiling with optimization
  3893. * Fix tanhl detection for platforms that have not implementation of it
  3894. * Remove several compile warnings
  3895. * Add experimental support of dynamic rules to regexp module
  3896. * Document views configuration
  3897. * Several fixes to documentation
  3898. * Add more logic for dynamic rules
  3899. * Add documentation for dynamic rules
  3900. * Add ability to make negations in networks in dynamic rules
  3901. * Clean up cache items correctly
  3902. * Implement basic SMTP dialog:
  3903. * Implement interaction with smtp upstream (with support of XCLIENT)
  3904. * Check messages received via smtp proxy
  3905. * Add support for sendfile in io dispatcher
  3906. * Fix issues with compatibility of worker_task and smtp proxy
  3907. * Proxy DATA command
  3908. * Fix SMTP
  3909. * Change metric logic
  3910. * Completely remove lex/yacc readers for config
  3911. * Make common sense of metric/action and symbols
  3912. * Sync changes with all plugins
  3913. * Incorrectly removed in previous commit
  3914. * Fix misprint (by Andrej Zverev)
  3915. * announce the "password" keyword in usage list
  3916. * Implement initial version of greylisting triplets storage
  3917. * Fix issues with smtp worker
  3918. * Fix QUIT command in SMTP worker
  3919. * Some fixes about new metrics system (may be incomplete)
  3920. * Get weights of symbol from default metric for symbols cache
  3921. * Fix setting task->from/task->rctp in smtp client
  3922. * Copy from and rcpt correctly
  3923. * Some performance improvements to IO dispatcher (do not drain the whole buffer after a single line readed)
  3924. * Fix smtp data input
  3925. * Fix misprint
  3926. * Add limit of maximum allowed smtp session errors
  3927. * New logic of SURBL module:
  3928. * Use system mkstemp(3) on systems where it is available as glib implementation
  3929. * Try to fix memmove issues in io dispatcher
  3930. * Remove debug from SURBL module
  3931. * Rewrite buffered input for line policy (again)
  3932. * Fix issue with links that are ip addresses in numeric form in surbl
  3933. * On Darwin use BSD style sendfile definition
  3934. * Reorganize platform specific knobs in CMakeLists
  3935. * Use gettimeofday on systems that have not clock_getres
  3936. * Use ftime for dns trans id generation on systems without clock_getres
  3937. * Darwin sendfile(2) support
  3938. * TIMEDB->TIMEB
  3939. * More to previous commit
  3940. * Pass env from main() arguments instead of platform specific global environ
  3941. * Fix compatibility issues
  3942. * Fix -lintl detection
  3943. * Init some variables to avoid problems
  3944. * Remove garbadge (gnome terminal sucks)
  3945. * Add more information about why we drop smtp connection
  3946. * Fix mkstemp call
  3947. * Send to upstream QUIT command at the end of session
  3948. * Check return value of each rspamd_dispatcher_write as in case of write errors sessions can be destroyed early
  3949. * Fix states in smtp dialog
  3950. * Use rspamd_snprintf instead of libc one
  3951. * Fix URLS command
  3952. * Fix reconfigure process of surbl module
  3953. * Fix destroying smtp session (unmap memory and do not delete pool early)
  3954. * Delete pool after using its variables
  3955. * Delay timer must be registered in async session to correctly handle connection termination
  3956. * Register dns requests in session too
  3957. * Make session before registering events
  3958. * Remove events in handlers
  3959. * Add ability to set filters for smtp worker for each smtp stage
  3960. * Add very initial version of DNS resolver (many things to be done)
  3961. * Announce weights and sync
  3962. * Fix few typo
  3963. * Understand short names of facility in logging config
  3964. * Add ability to make whitelist for spf checks
  3965. * Misprint != -> ==
  3966. * Handle lua tag in way that it is not required to write additional text:
  3967. * Strip all starting whitespace symbols from xml texts
  3968. * Fix stupid bug in calculating buffer length while reading file maps
  3969. * Add resolv.conf parsing into dns.c
  3970. * Fix microseconds<->milliseconds conversions
  3971. * Take callback argument in Mail::Rspamd::Client for processing files and directories
  3972. * Print results if rspamc is called for a directory
  3973. * Fix stupid error with surbl module reconfig (another one, blame me)
  3974. * Do not show duplicate urls in url header
  3975. * Fix detection of numeric urls (reported by citrin)
  3976. * Write real time of message's scan to log (not only virtual)
  3977. * Fix chartable module in utf mode
  3978. * Fix parsing of some broken urls
  3979. * Add ability to test regexp with 'T' flag
  3980. * Write more code for DNS resolver:
  3981. * Make DNS resolver working
  3982. * Many improvements to rspamd test suite: now it CAN be used for testing rspamd functionality
  3983. * Write DNS resolver tests
  3984. * Fix issues with memory_pool mutexes and with creating of statfiles
  3985. * Forgotten in previous commit
  3986. * Add support for parsing SPF and SRV records
  3987. * Fix PTR parsing
  3988. * Add tests
  3989. * Make SURBL module to use rspamd dns module
  3990. * Several fixes to DNS logic
  3991. * Remove evdns and use only rspamd resolver
  3992. * 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
  3993. * Fix resolving in smtp module
  3994. * Init events before configuring resolver in smtp worker
  3995. * Set resolver inside task
  3996. * Fix reload signal (reported by citrin)
  3997. * Some improvements to redirector
  3998. * Call has_forked method to inform POE about fork
  3999. * Fix lua DNS code
  4000. * Decompress labels in DNS packets more strictly
  4001. * Fix some problems with TXT records
  4002. * Try to fix removing of DNS events
  4003. * Do not insert unparsed RR's into reply
  4004. * Calling callbacks may cause destroying session from which we are calling callback so we MUST call callback as the latest action
  4005. * Fix check_smtp_data function
  4006. * Add ability to make views by recipient
  4007. * Add ability to set metric's action from config file
  4008. * Fix bug with writing garbadge if message has no urls or no messages
  4009. * Fix bug with incorrect behaviour of compare_parts_distance function
  4010. * Add ability to assign several actions to one metric
  4011. * Report action in rspamc protocol
  4012. * Mail::Rspamd::Client and rspamc can now understand Action header too
  4013. * Write action to log as well
  4014. * Make valgrind happy about comparing symbols
  4015. * Add more debug to comparing parts distance function
  4016. * Write action even if message has no symbols
  4017. * Make improvements to HTML entities decoder: now it replaces entities with common characters and
  4018. * Add -d option to force debug output
  4019. * Assume 7bit as default transfer encoding
  4020. * Do not overwrite lua plugins and configs if they already exists in target directory
  4021. * Improve logging
  4022. * Write queue id to log
  4023. * Remove test messages from cmake
  4024. * Reopen log file by USR1 signal
  4025. * Add reopenlog method to FreeBSD rc script
  4026. * Adopt foreach for cmake 2.6
  4027. * Fix to rc script
  4028. * Do not try to resolve names with several dots in a row
  4029. * Fix surbl request formatting for ip addresses
  4030. * Handle cases of broken requests
  4031. * Fix problems with parsing compressed names
  4032. * Fix TXT records parsing
  4033. * Fix expanding spf macros that may fail in rare cases
  4034. * Fix another error with early task destroying
  4035. * Handle empty from header
  4036. * Improve reopenlog command in rc script
  4037. * Strip trailing whitespace characters in Mail::Rspamd::Client
  4038. * Use ungreedy match to strip trailing whitespaces
  4039. * Stupid error in calculation compressed label length
  4040. * Some optimizations to client library
  4041. * Do not compare empty parts
  4042. * Empty and non-empty parts are always different
  4043. * Save in regexp cache the whole regexp with header name (if exists) and with flags
  4044. * Add rspamd_log variable to lua plugins to access logging functions
  4045. * Each part in rspamd task now can have parent part
  4046. * Check for parts distance only for multipart/alternative subparts
  4047. * Do not check attachements even if they are text (but attached as file)
  4048. * Do not die if write (2) returned ENOSPACE while doing logging, turn on throttling mode instead (1 write try in a second)
  4049. * Add ability to turn on debug for specific symbols
  4050. * Add ability to configure dns timeouts and dns retransmits in config file
  4051. * More debug
  4052. * Fix extracting arguments in lua logger interface
  4053. * Turn off debug_ip during reload if it was disabled by new config
  4054. * Improve lua logging
  4055. * Pre-init symbols cache when rereading config
  4056. * Fix lua representing of invalid ip (nil, not 255.255.255.255)
  4057. * Fix R_TO_SEEMS_AUTO rule (by citrin)
  4058. * Add multimap lua plugin
  4059. * Fix some multimap issues
  4060. * Try to save images hashes to fuzzy storage to stop some annoying spammers
  4061. * Allocate some more bytes for read buffer to avoid incorrect behavoiur
  4062. * Add ability to check dns black lists by multimap module
  4063. * Add multimap documentation
  4064. * Fix labels parsing
  4065. * Another try to save regexps in cache correctly
  4066. * Improve test logs for regexps
  4067. * Fix parsing txt records to avoid reading of uninitialized data
  4068. * Fix error with writing symbols cache file
  4069. * Fix error while working in utf mode when raw regexps was not created properly
  4070. * Do not add extra byte while converting text to utf
  4071. * Add error handling for regexps