aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix fuzzy_check.Vsevolod Stakhov2014-10-291-106/+26
|
* Some more auxiliary functions.Vsevolod Stakhov2014-10-292-0/+49
|
* Fix surbl.Vsevolod Stakhov2014-10-292-59/+26
|
* Fix smtp proxy code.Vsevolod Stakhov2014-10-291-29/+20
|
* Add parsing of multiple upstreams string.Vsevolod Stakhov2014-10-292-1/+40
|
* Rework and simplify listen sockets creation.Vsevolod Stakhov2014-10-295-92/+96
|
* Allow addresses to be allocated in rspamd_mempool.Vsevolod Stakhov2014-10-293-12/+37
|
* Fix some more old upstreams code.Vsevolod Stakhov2014-10-296-95/+24
|
* Disable binlog configuration as it is anyway broken.Vsevolod Stakhov2014-10-281-2/+4
|
* Merge branch 'upstream-rework'Vsevolod Stakhov2014-10-2810-1339/+947
|\
| * Fix lua upstream code.Vsevolod Stakhov2014-10-281-275/+46
| |
| * Upstreams get implementation.Vsevolod Stakhov2014-10-281-4/+154
| |
| * Allow multiple addresses per upstream.Vsevolod Stakhov2014-10-283-32/+153
| |
| * Add some basic logic for upstreams.Vsevolod Stakhov2014-10-283-15/+138
| |
| * Rework host/port/priority parsing.Vsevolod Stakhov2014-10-284-207/+155
| |
| * Split addr definition from the utils code.Vsevolod Stakhov2014-10-285-229/+295
| |
| * Start new upstreams implementation.Vsevolod Stakhov2014-10-282-3/+106
| |
| * Rework API completely.Vsevolod Stakhov2014-10-282-717/+43
|/
* Update readme.Vsevolod Stakhov2014-10-261-78/+98
|
* Merge pull request #112 from fatalbanana/masterVsevolod Stakhov2014-10-232-11/+0
|\ | | | | Remove CBL as it's wholly included in Spamhaus XBL
| * Remove CBL as it's wholly included in Spamhaus XBL which we're querying ↵Andrew Lewis2014-10-232-11/+0
|/ | | | already - http://cbl.abuseat.org/faq.html
* Merge pull request #111 from citrin/masterVsevolod Stakhov2014-10-232-12/+1
|\ | | | | Remove nszones.com fake RBL
| * Remove nszones.com fake RBL:Anton Yuzhaninov2014-10-212-12/+1
| | | | | | | | http://www.spamhaus.org/organization/statement/8/
* | Remove /0 mask for SPF mx as well.Vsevolod Stakhov2014-10-221-1/+0
| | | | | | | | Reported by: @citrin
* | Fix upstreams interaction for fuzzy_check.Vsevolod Stakhov2014-10-221-22/+35
| |
* | Revert ucl resynchronization.Vsevolod Stakhov2014-10-221-0/+0
| | | | | | | | Reported by: @citrin
* | Properly set address for PTR components.Vsevolod Stakhov2014-10-222-1/+0
| |
* | Verify spf PTR records.Vsevolod Stakhov2014-10-221-14/+73
|/ | | | Reported by: @citrin
* Add compatibility for old libevent.Vsevolod Stakhov2014-10-171-1/+1
| | | | | Issue: #109 Suggested by: @yellowman
* Sync bugfix from libucl.Vsevolod Stakhov2014-10-161-0/+0
|
* Release 0.7.2.0.7.2Vsevolod Stakhov2014-10-151-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Convert all maps to the compressed radix trie * Allow IPv6 addresses in IP maps * Remove dynamic items support from symbols cache * Allow hex encoded output of strings * Fix bug with control connections count * Process fuzzy weight correctly (reported by @fatalbanana) * Remove extra reference retain of http connection on error * Remove deprecated options from the default config * Add `one_shot` attr to metric's symbols * Doc: add documentation for metrics * Add Upstart job to debian packaging (by @CameronNemo) * Config: improve SURBL symbols descriptions (by @citrin) * Config: reflect SURBL changes (by @citrin): - Outblaze removed, malware moved to separate list: http://www.surbl.org/news/internal/MW-malware-sublist-added-to-multi * Fix C modules initialization on restart * Treat single IP as a single IP in radix lists (reported by @citrin) * Do not touch file and core limits if not asked explicitly (reported by @citrin) * Improve logging for fuzzy errors * Block SIGPIPE for HTTP writing * Doc: update manual pages * Fix HTTP connection termination * Reduce default number of parallel requests to 8 * Sync with libucl include features Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
* Update rpm spec.Vsevolod Stakhov2014-10-151-1/+4
|
* Added by a mistake.Vsevolod Stakhov2014-10-152-259/+0
|
* Update debian packaging.Vsevolod Stakhov2014-10-154-10/+262
|
* Update to 0.7.2.Vsevolod Stakhov2014-10-151-1/+1
|
* Fix macro definition.Vsevolod Stakhov2014-10-151-1/+2
|
* Sync libucl.Vsevolod Stakhov2014-10-152-0/+0
|
* Reduce default number of parallel requests to 8.Vsevolod Stakhov2014-10-153-3/+3
|
* Check part->fuzzy before dereferencing.Vsevolod Stakhov2014-10-151-1/+1
|
* Fix HTTP connection termination.Vsevolod Stakhov2014-10-151-1/+3
| | | | | If a remote side terminates a connection, then notify and destroy client as well.
* Block SIGPIPE for HTTP writing.Vsevolod Stakhov2014-10-151-1/+9
|
* Update manual pages.Vsevolod Stakhov2014-10-154-78/+104
|
* Improve logging for fuzzy errors.Vsevolod Stakhov2014-10-151-6/+18
| | | | Suggested by: @citrin
* Send controller reply now accepts variadic args.Vsevolod Stakhov2014-10-152-6/+10
|
* Implement va_list version for gstring printf.Vsevolod Stakhov2014-10-152-1/+8
|
* Do not touch limits if not asked explicitly.Vsevolod Stakhov2014-10-131-2/+2
| | | | Reported by: @citrin
* Treat single IP as a single IP.Vsevolod Stakhov2014-10-131-2/+2
| | | | | Issue: #106 Reported by: @citrin
* Remove old controller's code.Vsevolod Stakhov2014-10-121-2360/+0
|
* Fix C modules initialization on restart.Vsevolod Stakhov2014-10-102-5/+6
|
* Fix inserting to the hash.Vsevolod Stakhov2014-10-101-1/+5
|