/api/qmail/db/tells/retry
GET POSTReset 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
| Param | Type | Required | Description |
|---|---|---|---|
tell_id | int | Yes | The row id from tells/list-pending. |
Response
{
"success": true,
"message": "Tell reset to pending for retry",
"tell_id": 42
}Errors
| HTTP | Message |
|---|---|
| 400 | Missing 'tell_id' parameter |
| 400 | Invalid tell_id |
| 404 | Tell not found or not in 'failed' status |
| 500 | Failed 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
- /api/qmail/db/tells/list-pending — Find tell ids.
- /api/qmail/db/tells/clear-sent — Trim the queue.