Feature: read receipts (MDN, RFC 8098)
Bulwark had no read-receipt support (JMAP/Stalwart have no native MDN). End-to-end, client-side, in three parts: - Request (compose): a toolbar toggle (MailCheck, green when on) sets Disposition-Notification-To on the outgoing message via the JMAP "header:<name>:asText" create property. Threaded composer -> page -> email-store -> client.sendEmail. Default from requestReadReceiptDefault. - Detect (viewer): reads Disposition-Notification-To case-insensitively from the parsed headers and shows a banner (green Send / red Ignore) in the unified notification bar. Hidden in Sent/Drafts/Trash/Junk and once handled. message/disposition-notification + message/delivery-status report parts are filtered out of the attachment list. - Respond (MDN): lib/mdn.ts builds an RFC 8098 multipart/report (text/plain + message/disposition-notification, UTF-8/base64, localized subject + body). client.sendReadReceipt uploads the blob, imports it into Sent via Email/import, then submits with an explicit envelope. Both Send and Ignore set the $MDNSent keyword (RFC 3503) so no client re-prompts. Behaviour configurable: ask / always / never. New: lib/mdn.ts, read-receipt-banner.tsx. Settings (requestReadReceiptDefault, readReceiptResponse) + UI. All 17 locales.
This commit is contained in:
@@ -260,6 +260,15 @@
|
||||
"reschedule_prompt": "Introduce una nueva fecha/hora, p. ej. 2026-05-04T15:30"
|
||||
},
|
||||
"email_viewer": {
|
||||
"read_receipt": {
|
||||
"prompt": "El remitente solicita una confirmación de lectura:",
|
||||
"send": "Enviar confirmación",
|
||||
"ignore": "Ignorar",
|
||||
"sent": "Confirmación de lectura enviada.",
|
||||
"send_failed": "No se pudo enviar la confirmación de lectura",
|
||||
"mdn_subject": "Leído: {subject}",
|
||||
"mdn_body": "Este es un acuse de recibo del mensaje que enviaste a {recipient}.\n\nNota: Este acuse solo confirma que el mensaje se mostró en el ordenador del destinatario. No garantiza que el destinatario haya leído o entendido el contenido."
|
||||
},
|
||||
"no_email_selected": "Ningún correo seleccionado",
|
||||
"no_email_description": "Seleccione un correo de la lista para verlo aquí",
|
||||
"no_conversation_selected": "Ninguna conversación seleccionada",
|
||||
@@ -545,6 +554,8 @@
|
||||
"undo_send": "Deshacer envío"
|
||||
},
|
||||
"email_composer": {
|
||||
"read_receipt_on": "Confirmación de lectura solicitada (haz clic para desactivar)",
|
||||
"read_receipt_off": "Solicitar confirmación de lectura",
|
||||
"new_message": "Nuevo Mensaje",
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a Todos",
|
||||
@@ -1006,6 +1017,17 @@
|
||||
}
|
||||
},
|
||||
"email_behavior": {
|
||||
"request_read_receipt": {
|
||||
"label": "Solicitar confirmaciones de lectura de forma predeterminada",
|
||||
"description": "Activar previamente la solicitud de confirmación de lectura al redactar un mensaje nuevo."
|
||||
},
|
||||
"read_receipt_response": {
|
||||
"label": "Responder a las solicitudes de confirmación de lectura",
|
||||
"description": "Qué hacer cuando un mensaje entrante solicita una confirmación de lectura.",
|
||||
"ask": "Preguntar cada vez",
|
||||
"always": "Enviar siempre",
|
||||
"never": "No enviar nunca"
|
||||
},
|
||||
"title": "Comportamiento del Correo",
|
||||
"description": "Configure cómo se manejan los correos",
|
||||
"mark_read": {
|
||||
|
||||
Reference in New Issue
Block a user