@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.
@@ -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,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.