mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-05-10 17:43:31 +08:00
* feat: add STARTTLS support for SMTP proxy server Add smtp_tls_cert and smtp_tls_key environment variables to enable STARTTLS on the SMTP proxy server, matching existing IMAP TLS support. Closes #249 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test: add E2E tests for SMTP/IMAP STARTTLS - Add smtp-proxy-tls service with self-signed certs in docker-compose - Add smtp-tls.spec.ts: SMTP STARTTLS send plain/HTML/auth tests - Add imap-tls.spec.ts: IMAP STARTTLS login/list/select/fetch tests - Register smtp-proxy project in playwright.config.ts - Wait for TLS proxy readiness in docker-entrypoint.sh Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: enforce auth over TLS when STARTTLS is configured - Set auth_require_tls conditionally based on tls_context presence - Disable insecure SSLv2/SSLv3 protocols in TLS context Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: replace cert-gen service with inline cert generation The cert-gen one-shot container was exiting immediately after generating certificates, triggering --abort-on-container-exit and stopping all services before tests could run. Replace with an entrypoint script in smtp-proxy-tls that generates the self-signed cert before starting the proxy server. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
97 lines
2.2 KiB
YAML
97 lines
2.2 KiB
YAML
services:
|
|
mailpit:
|
|
image: axllent/mailpit:v1.29
|
|
ports:
|
|
- "1025:1025"
|
|
- "8025:8025"
|
|
|
|
worker:
|
|
build:
|
|
context: ..
|
|
dockerfile: e2e/Dockerfile.worker
|
|
ports:
|
|
- "8787:8787"
|
|
depends_on:
|
|
- mailpit
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-sf", "http://localhost:8787/health_check"]
|
|
interval: 3s
|
|
timeout: 5s
|
|
start_period: 10s
|
|
retries: 20
|
|
|
|
frontend:
|
|
build:
|
|
context: ..
|
|
dockerfile: e2e/Dockerfile.frontend
|
|
ports:
|
|
- "5173:5173"
|
|
depends_on:
|
|
worker:
|
|
condition: service_healthy
|
|
|
|
smtp-proxy:
|
|
build:
|
|
context: ../smtp_proxy_server
|
|
dockerfile: dockerfile
|
|
ports:
|
|
- "11025:8025"
|
|
- "11143:11143"
|
|
environment:
|
|
PROXY_URL: http://worker:8787
|
|
PORT: "8025"
|
|
IMAP_PORT: "11143"
|
|
depends_on:
|
|
worker:
|
|
condition: service_healthy
|
|
|
|
smtp-proxy-tls:
|
|
build:
|
|
context: ../smtp_proxy_server
|
|
dockerfile: dockerfile
|
|
ports:
|
|
- "11026:8026"
|
|
- "11144:11144"
|
|
environment:
|
|
PROXY_URL: http://worker:8787
|
|
PORT: "8026"
|
|
IMAP_PORT: "11144"
|
|
smtp_tls_cert: /certs/cert.pem
|
|
smtp_tls_key: /certs/key.pem
|
|
imap_tls_cert: /certs/cert.pem
|
|
imap_tls_key: /certs/key.pem
|
|
entrypoint: ["/bin/bash", "/e2e-scripts/smtp-tls-entrypoint.sh"]
|
|
volumes:
|
|
- ./scripts:/e2e-scripts:ro
|
|
depends_on:
|
|
worker:
|
|
condition: service_healthy
|
|
|
|
e2e-runner:
|
|
build:
|
|
context: ..
|
|
dockerfile: e2e/Dockerfile.e2e
|
|
environment:
|
|
WORKER_URL: http://worker:8787
|
|
FRONTEND_URL: http://frontend:5173
|
|
MAILPIT_API: http://mailpit:8025/api
|
|
SMTP_PROXY_HOST: smtp-proxy
|
|
SMTP_PROXY_SMTP_PORT: "8025"
|
|
SMTP_PROXY_IMAP_PORT: "11143"
|
|
SMTP_PROXY_TLS_HOST: smtp-proxy-tls
|
|
SMTP_PROXY_TLS_SMTP_PORT: "8026"
|
|
SMTP_PROXY_TLS_IMAP_PORT: "11144"
|
|
CI: "true"
|
|
depends_on:
|
|
worker:
|
|
condition: service_healthy
|
|
frontend:
|
|
condition: service_started
|
|
smtp-proxy:
|
|
condition: service_started
|
|
smtp-proxy-tls:
|
|
condition: service_started
|
|
volumes:
|
|
- ./test-results:/app/e2e/test-results
|
|
- ./playwright-report:/app/e2e/playwright-report
|