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

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