No description
  • Dockerfile 71.7%
  • Shell 28.3%
Find a file
2026-06-19 10:26:23 +02:00
dovecot 🎉 ÇA MARCHE EN ALPINE git add .! 2026-06-19 10:26:23 +02:00
postfix 🎉 ÇA MARCHE EN ALPINE git add .! 2026-06-19 10:26:23 +02:00
share Palier 3: Postfix + Dovecot working! Mail test successful with swaks 2026-06-17 09:54:03 +02:00
.gitignore Ajouter README avec instructions d'installation 2026-06-19 09:50:22 +02:00
docker-compose.yml Ajouter README avec instructions d'installation 2026-06-19 09:50:22 +02:00
hosts Ajouter README avec instructions d'installation 2026-06-19 09:50:22 +02:00
README.md Simplifier README - hosts déjà dans git 2026-06-19 09:54:17 +02:00

Mailstack - Serveur Mail Postfix + Dovecot

Installation sur Debian

1. Installer les dépendances

sudo apt update
sudo apt upgrade -y
sudo apt install -y podman podman-compose swaks git

2. Se connecter en tant qu'utilisateur non-root

su - ayo

3. Cloner le projet

git clone https://git.ayo.tokyo/jalwan/mail-files.git
cd mail-files

4. Lancer les conteneurs

podman-compose up -d

5. Vérifier que tout tourne

podman-compose ps

Devrait afficher : mailstack-dovecot Up

mailstack-postfix Up

6. Tester l'envoi de mail

swaks --server localhost --port 1025 \
  --from alice@ayoinc.test \
  --to bob@ayoinc.test \
  --header "Subject: Test Mailstack" \
  --body "Bonjour, ceci est un test"