Checks MTA-STS implementation for secure email.
5.4K
This tool verifies whether a give host correctly implements the new in-development MTA-STS standard for downgrade-resistant secure email. It is very new and not very well tested so don't rely on it's result too much.
Choose the right version for your environment:
latest: Latest stable build - recommended for production2.0.0: Specific stable version - recommended for productionmaster: Latest development build - recommended for testingExample: wydler/mta-sts-uwsgi:2.0.0
This container runs a Web UI for testing the new MTA-STS standard for downgrade-resistant secure email. It helps to check if all necessary DNS entries and configurations are correct.
---
services:
web:
image: "wydler/mta-sts-web:latest"
container_name: "mta-sts_webserver"
restart: "unless-stopped"
ports:
- "80:80"
volumes:
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
- "/var/run/docker.sock:/var/run/docker.sock:ro"
links:
- app
app:
image: "wydler/mta-sts-uwsgi:latest"
container_name: "mta-sts_application"
restart: "unless-stopped"
user: "33:33"
volumes:
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
- "/var/run/docker.sock:/var/run/docker.sock:ro"
networks:
default:
enable_ipv6: true
name: wydler-mta-sts_default
There are currently no variables.
This project is licensed under the BSD 2-clause license.
Content type
Image
Digest
sha256:f22e41c14…
Size
60.5 MB
Last updated
18 days ago
docker pull wydler/mta-sts-web