@bobfrankston/rmfmail 1.2.328 → 1.2.331

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4075,8 +4075,14 @@ export class MailxService implements MailxApi {
4075
4075
  // the body-only size (Bob 2026-08-11: "65KB attachment, why is the
4076
4076
  // email size showing as 6K?" — the size was right, the draft was
4077
4077
  // wrong). The send path always passed them; only this one didn't.
4078
+ // 2026-09-15 — Claude Code (Fable 5.1). This fallback ran silently
4079
+ // whenever the compose From input was focused (the client blanks it
4080
+ // for the identity picker) and the draft quietly changed identity.
4081
+ // The client side is fixed; log here so the next such slip is visible.
4082
+ const fromHeader = from?.trim() || `${account.name} <${account.email}>`;
4083
+ if (!from?.trim()) console.log(` [draft] no From supplied for ${id} — using account default ${fromHeader}`);
4078
4084
  const raw = buildMimeMessage({
4079
- from: from?.trim() || `${account.name} <${account.email}>`,
4085
+ from: fromHeader,
4080
4086
  to, cc, bcc,
4081
4087
  subject: subject || "(no subject)",
4082
4088
  bodyHtml, bodyText,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx-service",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
package/.commitmsg DELETED
@@ -1,12 +0,0 @@
1
- Edit in Word: edits come back as Word's own HTML (Range.ExportFragment), not mammoth; default calendar = primary
2
-
3
- - mailx-service 0.1.40: the COM autosave sidecar exports `<base>-word.htm` via
4
- Range.ExportFragment(path, wdFormatFilteredHTML) before each autosave and
5
- mirrors a manual Ctrl+S on its next tick. New word-html.ts turns that export
6
- into a body fragment (Mso classes, comments and o: tags stripped, sidecar
7
- images inlined as data: URIs). The watcher has a per-file debounce, ignores
8
- .docx saves once the Word HTML mirror exists, and keeps mammoth only for
9
- sessions without the sidecar. Word gets only the text above the signature
10
- (v1.2.327 split); the signature and quoted message are re-attached unchanged.
11
- - Calendar: the Add-event picker always defaults to the primary ("personal")
12
- calendar instead of remembering the last choice.