ansible-role-spamassassin/README.md

15 lines
394 B
Markdown
Raw Normal View History

2020-03-04 16:37:00 +01:00
# 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');
```