/api/qmail/db/tells/retry

GET POST

Reset a single failed pending-tell row back to status pending so the beacon will pick it up again.

GET http://localhost:8081/api/qmail/db/tells/retry?tell_id=42

Description

This is a status-only flip on the local pending_tells table — it does not contact RAIDA or the beacon directly. Once flipped, the next beacon poll cycle will attempt delivery again.

Parameters

ParamTypeRequiredDescription
tell_idintYesThe row id from tells/list-pending.

Response

{
  "success": true,
  "message": "Tell reset to pending for retry",
  "tell_id": 42
}

Errors

HTTPMessage
400Missing 'tell_id' parameter
400Invalid tell_id
404Tell not found or not in 'failed' status
500Failed to reset tell

Example

# GET — easy browser/devtool testing
curl "http://localhost:8081/api/qmail/db/tells/retry?tell_id=42"

# Canonical POST
curl -X POST "http://localhost:8081/api/qmail/db/tells/retry?tell_id=42"

Related