feat: import selected fork operational fixes

This commit is contained in:
Christian Krakau-Louis
2026-05-22 23:48:00 +02:00
parent 9f5cbdb851
commit 302159aeb6
16 changed files with 507 additions and 60 deletions
+4
View File
@@ -45,9 +45,11 @@ The fastest way to get DMARQ running is to use Docker Compose:
# IMAP_PASSWORD=your_secure_password
# IMAP_USE_SSL=true
# IMAP_POLLING_INTERVAL=60
# DELETE_IMPORTED_EMAILS=false
# Security Settings
SECRET_KEY=generate_a_secure_random_key
# WEBHOOK_SECRET=generate_a_separate_webhook_secret
ALLOWED_HOSTS=localhost,127.0.0.1
```
@@ -104,7 +106,9 @@ services:
- IMAP_PASSWORD=${IMAP_PASSWORD:-}
- IMAP_USE_SSL=${IMAP_USE_SSL:-true}
- IMAP_POLLING_INTERVAL=${IMAP_POLLING_INTERVAL:-60}
- DELETE_IMPORTED_EMAILS=${DELETE_IMPORTED_EMAILS:-false}
- SECRET_KEY=${SECRET_KEY:-insecure_key_change_me_in_production}
- WEBHOOK_SECRET=${WEBHOOK_SECRET:-}
- ALLOWED_HOSTS=${ALLOWED_HOSTS:-localhost,127.0.0.1}
depends_on:
- db