Protect your personal inbox from spam and unwanted tracking by generating unique email aliases for every service you use. When you sign up for newsletters or create new accounts, simply use a custom alias that forwards directly to your real address. If an alias starts receiving spam, you can instantly deactivate or delete it to keep your primary inbox clean.
Take full control of your email privacy with a robust set of features designed for anonymity and security:
services:
app:
image: anonaddy/anonaddy:latest
restart: always
depends_on:
- mariadb
- redis
ports:
- "25:25"
- "8000:8000"
volumes:
- ./data:/data
env_file:
- .env
mariadb:
image: mariadb:10.6
restart: always
environment:
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
MYSQL_DATABASE: ${DB_DATABASE}
MYSQL_USER: ${DB_USERNAME}
MYSQL_PASSWORD: ${DB_PASSWORD}
volumes:
- ./mysql:/var/lib/mysql
redis:
image: redis:alpine
restart: always
volumes:
- ./redis:/dataAPP_URL=https://addy.example.com
APP_KEY=base64:YOUR_GENERATED_APP_KEY_HERE
DB_CONNECTION=mysql
DB_HOST=mariadb
DB_PORT=3306
DB_DATABASE=anonaddy
DB_USERNAME=anonaddy
DB_PASSWORD=your_secure_db_password
DB_ROOT_PASSWORD=your_secure_root_password
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=null
ANONADDY_DOMAIN=example.com
ANONADDY_HOSTNAME=mail.example.com
ANONADDY_DKIM_PRIVATE_KEY=YOUR_DKIM_PRIVATE_KEY
ANONADDY_DKIM_SELECTOR=default
ANONADDY_SECRET=your_shared_secretAuto-fetched about 2 hours ago
Auto-fetched about 2 hours ago