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

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