@bobfrankston/rmfmail 1.2.315 → 1.2.316

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.
Files changed (43) hide show
  1. package/.commitmsg +30 -15
  2. package/.llm/trusted-lists.md +6 -0
  3. package/client/android-bootstrap.bundle.js +3 -0
  4. package/client/android-bootstrap.bundle.js.map +2 -2
  5. package/client/app.bundle.js +51 -3
  6. package/client/app.bundle.js.map +2 -2
  7. package/client/app.js +12 -0
  8. package/client/app.js.map +1 -1
  9. package/client/app.ts +11 -0
  10. package/client/components/calendar-sidebar.js +59 -3
  11. package/client/components/calendar-sidebar.js.map +1 -1
  12. package/client/components/calendar-sidebar.ts +50 -3
  13. package/client/compose/compose.bundle.js +4 -0
  14. package/client/compose/compose.bundle.js.map +2 -2
  15. package/client/lib/api-client.js +6 -0
  16. package/client/lib/api-client.js.map +1 -1
  17. package/client/lib/api-client.ts +6 -0
  18. package/client/lib/mailxapi.js +4 -1
  19. package/npmchanges.md +20 -0
  20. package/package.json +5 -5
  21. package/packages/mailx-imap/package-lock.json +2 -2
  22. package/packages/mailx-imap/package.json +1 -1
  23. package/packages/mailx-service/index.d.ts +14 -0
  24. package/packages/mailx-service/index.d.ts.map +1 -1
  25. package/packages/mailx-service/index.js +31 -0
  26. package/packages/mailx-service/index.js.map +1 -1
  27. package/packages/mailx-service/index.ts +29 -0
  28. package/packages/mailx-service/jsonrpc.js +2 -0
  29. package/packages/mailx-service/jsonrpc.js.map +1 -1
  30. package/packages/mailx-service/jsonrpc.ts +2 -0
  31. package/packages/mailx-service/package.json +1 -1
  32. package/packages/mailx-settings/package.json +1 -1
  33. package/packages/mailx-store/package.json +1 -1
  34. package/packages/mailx-store-web/package.json +1 -1
  35. package/packages/mailx-store-web/web-service.d.ts +4 -0
  36. package/packages/mailx-store-web/web-service.d.ts.map +1 -1
  37. package/packages/mailx-store-web/web-service.js +1 -0
  38. package/packages/mailx-store-web/web-service.js.map +1 -1
  39. package/packages/mailx-store-web/web-service.ts +1 -0
  40. package/packages/mailx-types/mailx-api.d.ts +5 -0
  41. package/packages/mailx-types/mailx-api.d.ts.map +1 -1
  42. package/packages/mailx-types/mailx-api.ts +2 -0
  43. package/packages/mailx-types/package.json +1 -1
package/.commitmsg CHANGED
@@ -1,17 +1,32 @@
1
- Self-spoof: the From domain's own SPF or DKIM pass is proof, DMARC verdict or not
1
+ New event: spelling suggestions, the right Google account, and a prompt refresh
2
2
 
3
- Follow-up to v1.2.314 (which vetoed the self-spoof finding on a DMARC pass).
4
- The AMW list (berglist.com) publishes no DMARC policy, so its posts carry
5
- no dmarc= verdict at all — but iecc.com recorded spf=pass for
6
- amw-bounces@berglist.com and dkim=pass d=berglist.com, which is the very
7
- evidence DMARC would have aligned on. The dkim=fail beside them was the
8
- gmail.com author signature the list broke, and the post was red as a spoof
9
- of the list's own address (Delivered-To). New alignedPass() in trust.ts:
10
- a verified signature for the From domain, or an SPF pass for an envelope at
11
- the From domain, computed as DMARC's relaxed alignment; a forger's pass for
12
- their own domain clears nothing (tested).
3
+ Three from Bob 2026-09-10 on the calendar sidebar's New event dialog.
13
4
 
14
- Store, last 120 days, messages whose From is their own Delivered-To: 977;
15
- self-spoof findings 35 before v1.2.314, 20 after it, 15 now. The 15 that
16
- remain are the sextortion, "failed to deliver", NDA-review and
17
- document-share phishes the check exists for. mailx-types 0.1.91.
5
+ "Spelling correct didn't work." The main window's right-click handler
6
+ replaced the native WebView2 menu with mailx's Cut/Copy/Paste block on
7
+ every surface and Chromium's spelling suggestions and "Add to
8
+ dictionary" exist only in the native menu, unreachable from JS. A word in
9
+ the New event box was underlined with no menu that could fix it. Plain
10
+ text controls (TEXTAREA, text-like INPUT) now keep the native menu, which
11
+ already carries Cut/Copy/Paste/Select all for a text field; everything
12
+ else is unchanged. (msger's compose items — Bold, Italic, View source —
13
+ also appear on those fields via its IsEditable gate and forward to the
14
+ compose frame, which is a no-op outside compose; cosmetic, noted.)
15
+
16
+ "I just used the add event but don't see them on Google calendar." The
17
+ dialog opens Google Calendar's create page in the browser, which signs in
18
+ as the browser's DEFAULT Google account, not necessarily the one mailx's
19
+ calendar reads. The URL now carries authuser=<primary calendar account
20
+ email> so the event lands where the sidebar looks.
21
+
22
+ "Creating an event should trigger an immediate update for the calendar
23
+ view." The reader saves the event in the browser; mailx only learned of
24
+ it at the next 5-minute throttled refresh. New refreshCalendarNow IPC
25
+ (service, jsonrpc, mailxapi.js, api-client, MailxApi, Android stub that
26
+ says ok:false) rewinds the throttle once and goes through
27
+ getCalendarEvents, so the in-flight dedup and the calendarUpdated emit
28
+ stay in one place; a 20 s floor of its own keeps it from reopening the
29
+ quota hole the throttle closed. The sidebar arms it after a create: on
30
+ the next window focus, and at 45 s / 2 min / 5 min in case the browser
31
+ sits on another monitor. mailx-types 0.1.93, mailx-service 0.1.36,
32
+ mailx-store-web 0.1.114.
@@ -51,3 +51,9 @@ tests/trust.test.ts, .commitmsg, TODO.md C165, root version 1.2.311. Then rebuil
51
51
  - [x] tests pass (tests/trust.test.ts 40/40)
52
52
  - [x] docs/TODO/.commitmsg/versions (v1.2.312)
53
53
  - [x] rebuild.cmd — v1.2.312 (feature) + v1.2.313 (chip button + undo toggle) published, APKs built. Restart the app to pick up.
54
+
55
+ ## 2026-09-10 — New event dialog (three items, publishing as one version)
56
+ - Spelling: main-window contextmenu handler (client/app.ts) now leaves the native menu on TEXTAREA / text INPUT — Chromium spelling suggestions live only there.
57
+ - Google account: buildGoogleEventUrl adds authuser=<primary calendar email> (getPrimaryAccount("calendar")).
58
+ - Immediate update: refreshCalendarNow IPC (6 edits) + armPostCreateRefresh() in calendar-sidebar.ts (focus + 45s/2m/5m). Service floor 20s.
59
+ - Status: compiled, bundles built, rebuild.cmd next, then restart.
@@ -7819,6 +7819,9 @@ var WebMailxService = class _WebMailxService {
7819
7819
  async getCalendarEvents(_fromMs, _toMs) {
7820
7820
  return [];
7821
7821
  }
7822
+ async refreshCalendarNow() {
7823
+ return { ok: false, reason: "no calendar on Android" };
7824
+ }
7822
7825
  async getCalendars() {
7823
7826
  return [];
7824
7827
  }