https://github.com/axllent/spamassassin
A SpamAssassin docker container running on Alpine Linux
https://github.com/axllent/spamassassin
mailpit spamassassin
Last synced: 4 months ago
JSON representation
A SpamAssassin docker container running on Alpine Linux
- Host: GitHub
- URL: https://github.com/axllent/spamassassin
- Owner: axllent
- License: mit
- Created: 2024-01-08T10:08:02.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2026-01-01T09:20:01.000Z (5 months ago)
- Last Synced: 2026-01-06T05:46:55.496Z (5 months ago)
- Topics: mailpit, spamassassin
- Language: Shell
- Homepage:
- Size: 25.4 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SpamAssassin
A SpamAssassin v4 [docker container](https://hub.docker.com/r/axllent/spamassassin)
running on Alpine Linux.
This image is designed to listen on port 783 for third-party integration, and is not a full-featured
spam solution. It was created primarily for integration with [Mailpit](https://mailpit.axllent.org).
By default all DNS checks including rDNS (reverse DNS) are disabled to vastly improve performance and
account for local testing, however all DNS checks (including rDNS) can be enabled by adding the
`DNS_CHECKS=1` environment variable.
Spam rules are automatically updated daily and on startup.
## Usage
```shell
docker run -d \
-p 783:783 \
--name spamassassin \
axllent/spamassassin
```
To enable DNS tests:
```shell
docker run -d \
-p 783:783 \
-e DNS_CHECKS=1 \
--name spamassassin \
axllent/spamassassin
```