Chore: Switch to a local IMAP server instead of a real email service (#11913)

This commit is contained in:
Trenton H
2026-01-27 11:35:12 -08:00
committed by GitHub
parent d9d83e3045
commit c84f2f04b3
4 changed files with 63 additions and 58 deletions

View File

@@ -23,3 +23,14 @@ services:
container_name: tika
network_mode: host
restart: unless-stopped
greenmail:
image: greenmail/standalone:2.1.8
hostname: greenmail
container_name: greenmail
environment:
# Enable only IMAP for now (SMTP available via 3025 if needed later)
GREENMAIL_OPTS: >-
-Dgreenmail.setup.test.imap -Dgreenmail.users=test@localhost:test -Dgreenmail.users.login=test@localhost -Dgreenmail.verbose
ports:
- "3143:3143" # IMAP
restart: unless-stopped