Maddy

All-in-one mail server that implements SMTP (both MTA and MX) and IMAP. Replaces Postfix, Dovecot, OpenDKIM, OpenSPF, OpenDMARC with single daemon.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3.3"
services:
  maddy:
    container_name: maddy
    image: foxcpp/maddy:0.6
    environment:
      - MADDY_HOSTNAME=mx.maddy.test
      - MADDY_DOMAIN=maddy.test
    volumes:
      - maddydata:/data
    ports:
      - 25:25
      - 143:143
      - 587:587
      - 993:993
    restart: always

Resources

Website: https://maddy.email/

GitHub: https://github.com/foxcpp/maddy

Docker Hub: https://hub.docker.com/r/foxcpp/maddy

Configuration: https://maddy.email/docker/