mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-08-07 06:23:41 +08:00
Fix IMAP flag persistence so read/unread state survives reconnects, and align SEARCH/FETCH behavior with persisted flags. Co-authored-by: bounce12340 <bounce12340@users.noreply.github.com>
18 lines
482 B
YAML
18 lines
482 B
YAML
services:
|
|
smtp_proxy_server:
|
|
image: ghcr.io/dreamhunter2333/cloudflare_temp_email/smtp_proxy_server:latest
|
|
# build:
|
|
# context: .
|
|
# dockerfile: dockerfile
|
|
container_name: "smtp_proxy_server"
|
|
ports:
|
|
- "8025:8025"
|
|
- "11143:11143"
|
|
environment:
|
|
- proxy_url=https://temp-email-api.xxx.xxx
|
|
- port=8025
|
|
- imap_port=11143
|
|
volumes:
|
|
# Persists IMAP flags (e.g. \Seen) across container restarts
|
|
- ./data:/app/data
|