|
|
|
|
|
by fensipens
4051 days ago
|
|
How does rspamd compare to mopher (http://mopher.org) in terms of functionality? I see some interesting things like the surbl module but other than that this seems to be more like mimedefang (or that's at least what I've picked up from the landing page). Also do you consider supporting multiple database drivers or will you stick with sqlite3? |
|
Multiple database drivers are in plans for rspamd 1.0 (along with personal statistics and advanced rules planner). The tricky stuff here is that rspamd uses non-blocking model currently which is hardly supported by database drivers (excluding redis and some others). However, rspamd has a concept of asynchronous threads executed in thread pool. So something like MySQL query could be executed within this thread pool with no delay for other filters processing.