You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Manual Execution of Raw Log Jobs Fails with 404 (#67)
Clicking "Run" on "Fetch Raw Logs" or "Cleanup Raw Logs" background jobs returned Unknown job error — the manual job trigger endpoint was missing both raw log jobs from its job mapping
Added fetch_raw_logs and cleanup_raw_logs to the manual trigger endpoint
Correctly reads job status from the raw logs worker's separate status tracking (not the main scheduler)
DMARC IMAP Reports with Non-English Subjects Not Imported (#66)
DMARC reports from providers using non-English subjects were silently skipped — the IMAP search only matched English subject patterns like "Report Domain:", "DMARC", "Report-ID:"
Added new setting DMARC_IMAP_SCAN_ALL_UNSEEN (default: off) — when enabled, scans all unread emails for DMARC/TLS-RPT attachments, not just subject-matched ones
Recommended for dedicated DMARC mailboxes that receive reports from international providers
DMARC report details merged all reporters into a single row per source IP — when multiple providers (Google, Microsoft, Yahoo, etc.) reported on the same sending IP, only the first reporter was shown
Reports are now split by reporter so each provider gets its own row with independent statistics
Noisy Error Traceback on Shutdown
CancelledError traceback logged during graceful shutdown — APScheduler raised an unhandled exception when fetch_all_logs was interrupted mid-cycle by the event loop shutting down
asyncio.CancelledError is now caught explicitly and logged as a INFO message instead of ERROR traceback