# ansible-role-spamassassin

Installs and configures spamassassin, <https://spamassassin.apache.org>

* We actually support PostgreSQL as remote backend
* The sql present in the `files` directory is valid on spamassassin 3.4

## TODO

* Clean the txrep stale data regulary, running the following query (PostgreSQL)

``` sql
DELETE FROM txrep WHERE last_hit <= (now() - INTERVAL '120 day');
```