@bobfrankston/rmfmail 1.2.329 → 1.2.333
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/client/android-bootstrap.bundle.js +52 -2
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/compose/compose.bundle.js +66 -6
- package/client/compose/compose.bundle.js.map +3 -3
- package/client/compose/compose.html +3 -0
- package/client/compose/compose.js +75 -4
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +70 -4
- package/client/lib/rmf-tiny.js +34 -4
- package/client/package.json +1 -1
- package/npmchanges.md +9 -0
- package/package.json +3 -3
- 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 -6
|
@@ -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,6 +0,0 @@
|
|
|
1
|
-
Compose: no separator above the signature
|
|
2
|
-
|
|
3
|
-
The thin 3 cm rule (which replaced the "-- " delimiter on 2026-09-10) is gone;
|
|
4
|
-
if a separator is wanted it belongs in the user's own signature HTML. The
|
|
5
|
-
signature is now wrapped in <div class="mailx-sig"> purely as the marker the
|
|
6
|
-
Edit-in-Word split uses; the old hr markers are still recognised in drafts.
|