@bobfrankston/rmfmail 1.2.268 → 1.2.272
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 +15 -3
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +16 -2
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-viewer.js +3 -0
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +3 -0
- package/client/compose/compose.bundle.js +1 -1
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.js +8 -1
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +8 -1
- package/client/package.json +1 -1
- package/package.json +7 -7
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +1 -1
- package/packages/mailx-settings/docs/thundermail-jmap.md +291 -0
- package/packages/mailx-settings/index.d.ts +1 -0
- package/packages/mailx-settings/index.d.ts.map +1 -1
- package/packages/mailx-settings/index.js +1 -0
- package/packages/mailx-settings/index.js.map +1 -1
- package/packages/mailx-settings/index.ts +1 -0
- package/packages/mailx-settings/package.json +1 -1
- package/packages/mailx-store/package.json +1 -1
- package/packages/mailx-store-web/package.json +1 -1
- package/packages/mailx-store-web/web-settings.d.ts +1 -0
- package/packages/mailx-store-web/web-settings.d.ts.map +1 -1
- package/packages/mailx-store-web/web-settings.js +1 -0
- package/packages/mailx-store-web/web-settings.js.map +1 -1
- package/packages/mailx-store-web/web-settings.ts +1 -0
- package/packages/mailx-types/index.d.ts +8 -1
- package/packages/mailx-types/index.d.ts.map +1 -1
- package/packages/mailx-types/index.js +25 -2
- package/packages/mailx-types/index.js.map +1 -1
- package/packages/mailx-types/index.ts +29 -2
- package/packages/mailx-types/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-83744 → node_modules.npmglobalize-stash-72180}/.package-lock.json +0 -0
|
@@ -2861,9 +2861,20 @@ function displayNameClaimsOtherAddress(name, address) {
|
|
|
2861
2861
|
const m = n.match(/[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}/g);
|
|
2862
2862
|
if (!m)
|
|
2863
2863
|
return null;
|
|
2864
|
+
const realDomain = real.split("@").pop() || "";
|
|
2864
2865
|
for (const claimed of m) {
|
|
2865
|
-
if (claimed.toLowerCase()
|
|
2866
|
-
|
|
2866
|
+
if (claimed.toLowerCase() === real)
|
|
2867
|
+
continue;
|
|
2868
|
+
const claimedDomain = claimed.toLowerCase().split("@").pop() || "";
|
|
2869
|
+
if (claimedDomain && realDomain) {
|
|
2870
|
+
if (claimedDomain === realDomain)
|
|
2871
|
+
continue;
|
|
2872
|
+
if (claimedDomain.endsWith("." + realDomain))
|
|
2873
|
+
continue;
|
|
2874
|
+
if (realDomain.endsWith("." + claimedDomain))
|
|
2875
|
+
continue;
|
|
2876
|
+
}
|
|
2877
|
+
return claimed;
|
|
2867
2878
|
}
|
|
2868
2879
|
return null;
|
|
2869
2880
|
}
|
|
@@ -3472,7 +3483,8 @@ var init_web_settings = __esm({
|
|
|
3472
3483
|
editor: "quill",
|
|
3473
3484
|
folderWidth: 220,
|
|
3474
3485
|
listViewerSplit: 40,
|
|
3475
|
-
fontSize: 15
|
|
3486
|
+
fontSize: 15,
|
|
3487
|
+
composeFontSize: 20
|
|
3476
3488
|
},
|
|
3477
3489
|
sync: {
|
|
3478
3490
|
intervalMinutes: 5,
|