@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.
- package/.llm/config-cache-crash.md +3 -0
- package/client/compose/compose.bundle.js +24 -4
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.html +3 -0
- package/client/compose/compose.js +46 -14
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +42 -14
- package/client/package.json +1 -1
- package/npmchanges.md +24 -0
- package/package.json +1 -1
- package/packages/mailx-service/index.d.ts.map +1 -1
- package/packages/mailx-service/index.js +8 -1
- package/packages/mailx-service/index.js.map +1 -1
- package/packages/mailx-service/index.ts +7 -1
- package/packages/mailx-service/package.json +1 -1
- package/.commitmsg +0 -12
|
@@ -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:
|
|
4085
|
+
from: fromHeader,
|
|
4080
4086
|
to, cc, bcc,
|
|
4081
4087
|
subject: subject || "(no subject)",
|
|
4082
4088
|
bodyHtml, bodyText,
|
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.
|