aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add lua-expr:process method.Vsevolod Stakhov2015-03-191-0/+22
|
* Finish expression evaluation.Vsevolod Stakhov2015-03-191-2/+13
|
* Merge pull request #230 from fatalbanana/masterVsevolod Stakhov2015-03-191-20/+39
|\ | | | | Fix luajit/lua headers confusion
| * Fix luajit/lua headers confusionAndrew Lewis2015-03-191-20/+39
| | | | | | | | | | Conflicts: CMakeLists.txt
* | Merge pull request #229 from fatalbanana/masterVsevolod Stakhov2015-03-192-2/+3
|\| | | | | Fix finding headers from luajit
| * Fix debian/controlAndrew Lewis2015-03-191-1/+1
| |
| * Fix finding headers from luajitAndrew Lewis2015-03-191-1/+2
| |
* | Write optimizator for plus operator.Vsevolod Stakhov2015-03-191-2/+150
| |
* | Prefer processed elements during optimizations.Vsevolod Stakhov2015-03-191-2/+4
| |
* | Merge pull request #227 from dottedmag/masterVsevolod Stakhov2015-03-182-3/+20
|\ \ | | | | | | Pull changelogs from rspamd-0.8
| * | Pull changelogs from rspamd-0.8Mikhail Gusarov2015-03-182-3/+20
|/ /
* | Fix references.Vsevolod Stakhov2015-03-182-29/+38
| |
* | Fix length when parsing ip4/ip6.Vsevolod Stakhov2015-03-181-2/+2
| |
* | Fix some more issues in spf.Vsevolod Stakhov2015-03-181-7/+10
| |
* | Fix issues in spf plugin.Vsevolod Stakhov2015-03-182-10/+14
| |
* | Use const pointer for LRU cache search.Vsevolod Stakhov2015-03-182-2/+2
| |
* | Fix errors.Vsevolod Stakhov2015-03-182-24/+38
| |
* | Merge branch 'spf-rework'Vsevolod Stakhov2015-03-183-868/+787
|\ \
| * | Fix refcounts.Vsevolod Stakhov2015-03-182-2/+17
| | |
| * | Fix spf plugin.Vsevolod Stakhov2015-03-183-101/+27
| | |
| * | Rework flattening and callback logic.Vsevolod Stakhov2015-03-182-127/+39
| | |
| * | Rework plain ip6/ip4 parsing.Vsevolod Stakhov2015-03-182-6/+81
| | |
| * | Add records flattening logic.Vsevolod Stakhov2015-03-181-17/+95
| | |
| * | Rework DNS callback.Vsevolod Stakhov2015-03-182-318/+124
| | |
| * | Unify hostmask parsing.Vsevolod Stakhov2015-03-181-40/+124
| | |
| * | Fix parsing routines.Vsevolod Stakhov2015-03-181-205/+182
| | |
| * | Start rework for spf structures.Vsevolod Stakhov2015-03-182-98/+148
| | |
| * | Rework address matching algorithm in SPF plugin.Vsevolod Stakhov2015-03-181-25/+21
|/ /
* | 2 more test cases.Vsevolod Stakhov2015-03-181-0/+4
| |
* | Add more unit tests.Vsevolod Stakhov2015-03-181-1/+11
| |
* | Use reft-associativity by default for all ops.Vsevolod Stakhov2015-03-181-2/+3
| |
* | Treat '+' as operator symbol.Vsevolod Stakhov2015-03-181-0/+2
| |
* | Initialize state.Vsevolod Stakhov2015-03-181-1/+1
| |
* | Fix more issues in expressions parser.Vsevolod Stakhov2015-03-173-6/+18
| |
* | Fix expressions unit test.Vsevolod Stakhov2015-03-171-3/+4
| |
* | Merge pull request #225 from fatalbanana/masterVsevolod Stakhov2015-03-1718-69/+100
|\| | | | | Try include rspamd.conf.local.override with high priority
| * Add specific workaround for debian.Vsevolod Stakhov2015-03-171-0/+4
| |
| * Reiterate on systemd.Vsevolod Stakhov2015-03-172-19/+28
| | | | | | | | | | Conflicts: CMakeLists.txt
| * Use Systemd for Linux family and SysV for other systems.Andrej Zverev2015-03-172-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are creating conf/rspamd.conf.in as template and declaring two new variables for CMake: DEFAULTS (for SysV): RSPAMD_WORKER_NORMAL = "*:11333" RSPAMD_WORKER_CONTROLLER = "*:11334" For Linux (for Systemd): RSPAMD_WORKER_NORMAL = "systemd:0" RSPAMD_WORKER_CONTROLLER = "systemd:1" During build we replace template with correct values. Conflicts: CMakeLists.txt
| * Adapt debian/control for 0.9.xAndrew Lewis2015-03-171-1/+1
| |
| * Try include rspamd.conf.local.override with high priorityAndrew Lewis2015-03-171-1/+2
| |
| * Remove obsolete conffiles on upgradeMikhail Gusarov2015-03-171-0/+3
| |
| * Explicitly set tmpdir in config fileMikhail Gusarov2015-03-171-0/+1
| |
| * Work around Debian mishandling of systemd socket-activated unitsMikhail Gusarov2015-03-174-1/+32
| | | | | | | | | | | | If there is a backward compatibility sysvinit script, then even socket-activated services are started automatically after install/upgrade.
| * Fix syntax error in worker-normal.incMikhail Gusarov2015-03-171-1/+1
| |
| * Bump Standards-VersionMikhail Gusarov2015-03-171-1/+1
| |
| * Fix installing conf/ filesMikhail Gusarov2015-03-171-4/+7
| |
| * Reorganize configuration files for systemdMikhail Gusarov2015-03-1712-72/+83
| | | | | | | | | | | | Common systemd/non-systemd options were moved to .inc files. rspamd.conf is systemd-enabled one, rspamd.sysvinit.conf is sysvinit-compatible one.
* | More to lazy evaluation logic.Vsevolod Stakhov2015-03-171-21/+14
| |
* | Add processing for AND, NOT and OR operations.Vsevolod Stakhov2015-03-171-0/+102
| |