@bobfrankston/rmfmail 1.1.206 → 1.1.207

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.
@@ -1859,8 +1859,6 @@ async function loadTinymce(opts) {
1859
1859
  }),
1860
1860
  import("tinymce/models/dom").catch(() => {
1861
1861
  }),
1862
- import("tinymce/plugins/paste").catch(() => {
1863
- }),
1864
1862
  import("tinymce/plugins/lists").catch(() => {
1865
1863
  }),
1866
1864
  import("tinymce/plugins/link").catch(() => {
@@ -1929,7 +1927,15 @@ async function createTinyMceEditor(container2, opts = {}) {
1929
1927
  // All free / OSS plugins bundled in the jsDelivr tinymce@6 script.
1930
1928
  // No premium plugins listed — listing one without an API key
1931
1929
  // triggers TinyMCE's upsell dialog on every load.
1932
- plugins: "paste lists advlist link table code codesample image searchreplace autolink wordcount emoticons charmap insertdatetime quickbars nonbreaking directionality help",
1930
+ // NOTE: no "paste" plugin it was REMOVED in TinyMCE 6 (paste,
1931
+ // including Word-paste fidelity, is now built into core). We're on
1932
+ // v8; listing "paste" makes TinyMCE's loader fetch the nonexistent
1933
+ // plugins/paste/plugin.min.js over msger's custom protocol, which
1934
+ // returns an error body the WebView tries to eval → "Uncaught
1935
+ // SyntaxError: Unexpected identifier 'Not'" → init fails → compose
1936
+ // falls back to a stub editor and Reply/Reply-All break (Bob
1937
+ // 2026-06-01). The paste_* OPTIONS below remain valid (core).
1938
+ plugins: "lists advlist link table code codesample image searchreplace autolink wordcount emoticons charmap insertdatetime quickbars nonbreaking directionality help",
1933
1939
  toolbar: [
1934
1940
  "undo redo | bold italic underline strikethrough | forecolor backcolor",
1935
1941
  "bullist numlist outdent indent | link table image code rmfcode | emoticons charmap | help"