# Selfcheck System The selfcheck system provides end-to-end testing of the mail delivery pipeline to ensure that the entire system is working correctly. ## Overview The selfcheck system performs the following operations: 1. **Creates test mailboxes** for the configured FROM and TO addresses if they don't exist 2. **Creates a test message** with a unique secret in the body 3. **Sends the message** via the outbound system using `prepare_outbound_message` and `send_message(force_mta_out=True)` 4. **Waits for message reception** by polling the target mailbox for a message containing the secret 5. **Verifies message integrity** by checking that the received message contains the secret and has proper structure 6. **Cleans up test data** by deleting the test message and thread (but keeping the mailboxes) 7. **Times all operations** and provides detailed metrics ## Configuration The selfcheck system uses the following environment variables: - `MESSAGES_SELFCHECK_FROM`: Email address to send from (for instance: `selfcheck@example.local`) - `MESSAGES_SELFCHECK_TO`: Email address to send to (for instance: `selfcheck-receiver@example.local`) - `MESSAGES_SELFCHECK_SECRET`: Secret string to include in the message body (for instance: `selfcheck-secret-xyz`) - `MESSAGES_SELFCHECK_INTERVAL`: Interval in seconds between self-checks (for instance: `600` - 10 minutes) - `MESSAGES_SELFCHECK_TIMEOUT`: Timeout in seconds for message reception (for instance: `60` - 60 seconds) Optionally, to enable uptime alerting via a selfcheck webhook: - `MESSAGES_SELFCHECK_WEBHOOK_URL`: URL of the selfcheck webhook endpoint (default: `None` - disabled) Optionally, to report selfcheck runs to [Sentry Crons](https://docs.sentry.io/product/crons/): - `MESSAGES_SELFCHECK_SENTRY_MONITOR_SLUG`: Slug of the Sentry cron monitor (default: `None` - disabled). Requires `SENTRY_DSN` to also be set. ## Usage ### Manual Execution Run the selfcheck manually using the Django management command: ```bash # Run with default settings python manage.py selfcheck # Run with verbose output python manage.py selfcheck --verbose ``` ### Scheduled Execution The selfcheck runs automatically every 10 minutes via Celery Beat. The interval can be configured using the `MESSAGES_SELFCHECK_INTERVAL` setting. ## Response Format The selfcheck returns simplified timing metrics: ```json { "success": true, "error": null, "send_time": 0.15, "reception_time": 2.34 } ``` ## Error Handling If the selfcheck fails, it will return an error message and attempt to clean up any test data that was created. Common failure scenarios include: - **Message preparation failure**: The outbound message preparation failed - **Message sending failure**: The message could not be sent via the MTA - **Reception timeout**: The message was not received within the timeout period (configurable via `MESSAGES_SELFCHECK_TIMEOUT`) - **Integrity verification failure**: The received message does not contain the expected secret or has structural issues ## Logging The selfcheck system logs all operations with appropriate log levels: - `INFO`: Normal operation progress - `WARNING`: Non-critical issues (e.g., parsing errors for individual messages) - `ERROR`: Critical failures that cause the self-check to fail Every selfcheck emits a structured log line that can be ingested by any log analysis tool: - Success: `selfcheck_completed success=true send_time=0.150 reception_time=2.340` (INFO) - Failure: `selfcheck_completed success=false error=""` (ERROR) These log lines can be used to build dashboards and alerts on timing trends. ## Monitoring ### Selfcheck Webhook (uptime alerting) When `MESSAGES_SELFCHECK_WEBHOOK_URL` is configured, a heartbeat is POSTed to the webhook URL on each successful selfcheck. This is compatible with updown.io pulses and similar services. If the selfcheck fails, no request is sent, and the missing heartbeat triggers an alert after the configured grace period. The POST body includes timing data: ```json {"send_time": 0.15, "reception_time": 2.34} ``` ### Sentry Crons When `MESSAGES_SELFCHECK_SENTRY_MONITOR_SLUG` is configured (and `SENTRY_DSN` is set), each selfcheck run is reported to [Sentry Crons](https://docs.sentry.io/product/crons/): - An `in_progress` check-in is opened before the test message is sent. - The check-in is closed with status `ok` on success or `error` on failure. - On success, the reported `duration` is `send_time + reception_time`, excluding the post-run cleanup pause. Configure the monitor schedule (interval and grace period) in the Sentry UI to match `MESSAGES_SELFCHECK_INTERVAL`. Runs skipped because `MESSAGES_SELFCHECK_FROM` or `MESSAGES_SELFCHECK_TO` is empty do not produce a check-in. ## Security Considerations - The selfcheck uses dedicated test mailboxes that are separate from user data - Test messages are automatically cleaned up after verification - The secret string is configurable to prevent predictable patterns - All test data is isolated from production user data