aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* [Minor] Some fixes to the slovenian languageVsevolod Stakhov2020-02-082-2/+36
|
* [Minor] Remove some strange wordsVsevolod Stakhov2020-02-082-10/+2
|
* [Minor] Further fixes in stop words detectionVsevolod Stakhov2020-02-071-10/+0
|
* [Minor] Reformat languages data jsonVsevolod Stakhov2020-02-071-21/+4136
|
* Merge pull request #3253 from Disassembler0/czech-stopwordsVsevolod Stakhov2020-02-071-0/+1
|\ | | | | [Minor] Add Czech stop words
| * Add Czech stop wordsDisassembler2020-02-051-0/+1
| |
* | More german stop wordsAndré Peters2020-02-051-1/+1
|/
* [Minor] Add diacritics flag for language detectorVsevolod Stakhov2020-02-043-3/+3
|
* [Minor] Slightly improve numeric checks (not finished)Vsevolod Stakhov2020-01-281-6/+12
|
* [Minor] contrib/snowball: fix modules.h locationPeter Wu2020-01-212-14/+4
| | | | | | | | | | * Reproducible builds! No more absolute paths in source files, so the generated binary is also invariant of the build directory. * Output modules.h in snowball/libstemmer/ instead of snowball/. This allows removal of the extra include directory and -f option. * This partially reverts some changes in https://github.com/snowballstem/snowball/commit/d178f201fda878c26538401650a7d46c37a5e6f1 and matches the commands in GNUmakefile.
* [Minor] contrib/libev: avoid absolute path for headerPeter Wu2020-01-201-2/+3
| | | | | * Avoid including the absolute header path to permit reproducible builds invariant of the build direvtory.
* [Minor] silence redefinition of macroChristian Göttsche2020-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [74/340] Building C object contrib/lua-lpeg/CMakeFiles/rspamd-lpeg.dir/lpprint.c.o In file included from ../contrib/lua-lpeg/lpprint.c:11: ../contrib/lua-lpeg/lptypes.h:15: warning: "NDEBUG" redefined 15 | #define NDEBUG | <command-line>: note: this is the location of the previous definition [75/340] Building C object contrib/lua-lpeg/CMakeFiles/rspamd-lpeg.dir/lpcap.c.o In file included from ../contrib/lua-lpeg/lpcap.h:9, from ../contrib/lua-lpeg/lpcap.c:9: ../contrib/lua-lpeg/lptypes.h:15: warning: "NDEBUG" redefined 15 | #define NDEBUG | <command-line>: note: this is the location of the previous definition [77/340] Building C object contrib/lua-lpeg/CMakeFiles/rspamd-lpeg.dir/lpvm.c.o In file included from ../contrib/lua-lpeg/lpcap.h:9, from ../contrib/lua-lpeg/lpvm.c:15: ../contrib/lua-lpeg/lptypes.h:15: warning: "NDEBUG" redefined 15 | #define NDEBUG | <command-line>: note: this is the location of the previous definition [79/340] Building C object contrib/lua-lpeg/CMakeFiles/rspamd-lpeg.dir/lpcode.c.o In file included from ../contrib/lua-lpeg/lpcode.c:12: ../contrib/lua-lpeg/lptypes.h:15: warning: "NDEBUG" redefined 15 | #define NDEBUG | <command-line>: note: this is the location of the previous definition [81/340] Building C object contrib/lua-lpeg/CMakeFiles/rspamd-lpeg.dir/lptree.c.o In file included from ../contrib/lua-lpeg/lptree.c:15: ../contrib/lua-lpeg/lptypes.h:15: warning: "NDEBUG" redefined 15 | #define NDEBUG | <command-line>: note: this is the location of the previous definition
* [Minor] silence -Wmisleading-indentation in contrib/snowball/Christian Göttsche2020-01-161-4/+3
| | | | | | | | | | | | | | | | | | | | | | | ../contrib/snowball/compiler/analyser.c: In function ‘check_name_type’: ../contrib/snowball/compiler/analyser.c:210:19: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] 210 | case 'r': if (p->type == t_routine || | ^~ ../contrib/snowball/compiler/analyser.c:211:54: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ 211 | p->type == t_external) return; break; | ^~~~~ ../contrib/snowball/compiler/analyser.c: In function ‘read_program’: ../contrib/snowball/compiler/analyser.c:859:21: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] 859 | if (q->used && q->definition == 0) error4(a, q); break; | ^~ ../contrib/snowball/compiler/analyser.c:859:70: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ 859 | if (q->used && q->definition == 0) error4(a, q); break; | ^~~~~ ../contrib/snowball/compiler/analyser.c:861:21: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] 861 | if (q->used && q->grouping == 0) error4(a, q); break; | ^~ ../contrib/snowball/compiler/analyser.c:861:68: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ 861 | if (q->used && q->grouping == 0) error4(a, q); break; | ^~~~~
* [Fix] Fix dealing with `\0` in ucl strings and JSONVsevolod Stakhov2020-01-133-1/+13
|
* [Minor] Remove enforced "-O3" from contrib librariesVsevolod Stakhov2019-12-2511-63/+0
|
* [Minor] Try to retransmit DNS requests on write failuresVsevolod Stakhov2019-12-161-31/+81
|
* [Minor] Disable ottery wipe stack as it breaks asan sometimesVsevolod Stakhov2019-12-101-1/+1
|
* [Minor] Fix asan friendliness in lpegVsevolod Stakhov2019-11-291-10/+22
|
* [Minor] Allow rspamd_text matching in lpegVsevolod Stakhov2019-11-251-1/+18
|
* [Rework] Further cmake system reworkVsevolod Stakhov2019-11-181-1/+0
|
* [Minor] Use ref impl for small stringsVsevolod Stakhov2019-11-151-1/+3
|
* [Project] Add fast utf8 validation libraryVsevolod Stakhov2019-11-157-0/+850
|
* [Minor] Add failure reason in the upstreams codeVsevolod Stakhov2019-11-132-5/+6
|
* [Fix] Fail DNS upstream on each retransmit attemptVsevolod Stakhov2019-11-082-11/+16
|
* [Minor] Fix openblas detection logic (or try to)Vsevolod Stakhov2019-11-061-5/+0
|
* [Minor] Rdns: Update loop timestamp if it is cheapVsevolod Stakhov2019-11-011-0/+3
|
* [Minor] Add method ev_now_update_if_cheapVsevolod Stakhov2019-11-012-0/+13
|
* [Minor] Add better support for non-Linux systemsVsevolod Stakhov2019-10-311-7/+14
|
* [Minor] Use CLOCK_MONOTONIC_COARSE where suitableVsevolod Stakhov2019-10-311-2/+14
|
* [Rework] Require CMake 3.9 to work, remove manual lto crapVsevolod Stakhov2019-10-151-3/+0
|
* [Fix] Add configurable number of threads for OpenBLASVsevolod Stakhov2019-10-141-15/+1
| | | | Issue: #3082
* [Minor] Fix compile warningsVsevolod Stakhov2019-10-102-1/+4
|
* [Minor] Update argparse to 0.7.0Vsevolod Stakhov2019-10-061-20/+582
|
* [Minor] Init tree before usageVsevolod Stakhov2019-09-271-0/+1
|
* [Minor] Fix another static leakVsevolod Stakhov2019-09-271-0/+2
|
* [Minor] Fix for gccVsevolod Stakhov2019-09-251-2/+2
|
* [Minor] Disable asan for specific bad parts of the codeVsevolod Stakhov2019-09-252-5/+1
|
* [Minor] Avoid out-of-boundary read in btrieVsevolod Stakhov2019-09-251-1/+2
| | | | Submitted by: @citrin
* Fix template for support elasticsearch v7 #3041Vitaliy Vasilenko2019-09-181-130/+125
|
* [Minor] Libucl: Fix rspamd{text} parsingVsevolod Stakhov2019-09-161-3/+3
|
* [Rework] Start moving to replxxVsevolod Stakhov2019-09-031-1/+1
|
* [Rework] Replace linenoise with replxxVsevolod Stakhov2019-09-0332-1305/+7542
| | | | Source: https://github.com/AmokHuginnsson/replxx
* [Fix] Fix pending checks for eventsVsevolod Stakhov2019-08-291-0/+2
|
* [Minor] Add lua bit library if not luajitVsevolod Stakhov2019-08-162-0/+202
|
* [Minor] Fix some ubsan related issuesVsevolod Stakhov2019-08-122-3/+3
|
* [Project] Add linked list reversal procedureVsevolod Stakhov2019-07-121-0/+9
|
* [Project] Further rework of mime headers processingVsevolod Stakhov2019-07-121-13/+13
|
* [Rework] Use libsodium instead of hand crafted crypto implementationsVsevolod Stakhov2019-07-081-0/+5
|
* [Feature] Libucl: Allow to sort keys in ucl objectsVsevolod Stakhov2019-07-085-0/+90
|
* [Minor] Allow to work without cblas.hVsevolod Stakhov2019-07-033-0/+30
|