@push.rocks/smartmta 5.1.1 → 5.1.2
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/changelog.md +6 -0
- package/package.json +1 -1
- package/readme.md +16 -16
package/changelog.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-02-11 - 5.1.2 - fix(readme)
|
|
4
|
+
adjust ASCII architecture diagram alignment in README
|
|
5
|
+
|
|
6
|
+
- Whitespace and alignment tweaks to the ASCII architecture diagram in readme.md
|
|
7
|
+
- No code or behavior changes; documentation-only edit
|
|
8
|
+
|
|
3
9
|
## 2026-02-11 - 5.1.1 - fix(release)
|
|
4
10
|
no changes
|
|
5
11
|
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -43,28 +43,28 @@ After installation, run `pnpm build` to compile the Rust binary (`mailer-bin`).
|
|
|
43
43
|
|
|
44
44
|
```
|
|
45
45
|
┌──────────────────────────────────────────────────────────────┐
|
|
46
|
-
│ UnifiedEmailServer
|
|
47
|
-
│ (orchestrates all components, emits events)
|
|
46
|
+
│ UnifiedEmailServer │
|
|
47
|
+
│ (orchestrates all components, emits events) │
|
|
48
48
|
├───────────┬───────────┬──────────────┬───────────────────────┤
|
|
49
49
|
│ Email │ Security │ Delivery │ Configuration │
|
|
50
50
|
│ Router │ Stack │ System │ │
|
|
51
|
-
│ ┌──────┐ │ ┌───────┐ │ ┌──────────┐ │ ┌────────────────┐
|
|
52
|
-
│ │Match │ │ │ DKIM │ │ │ Queue │ │ │ DomainRegistry │
|
|
53
|
-
│ │Route │ │ │ SPF │ │ │ Rate Lim │ │ │ DnsManager │
|
|
54
|
-
│ │ Act │ │ │ DMARC │ │ │ Retry │ │ │ DKIMCreator │
|
|
55
|
-
│ └──────┘ │ │ IPRep │ │ └──────────┘ │ │ Templates │
|
|
56
|
-
│ │ │ Scan │ │ │ └────────────────┘
|
|
51
|
+
│ ┌──────┐ │ ┌───────┐ │ ┌──────────┐ │ ┌────────────────┐ │
|
|
52
|
+
│ │Match │ │ │ DKIM │ │ │ Queue │ │ │ DomainRegistry │ │
|
|
53
|
+
│ │Route │ │ │ SPF │ │ │ Rate Lim │ │ │ DnsManager │ │
|
|
54
|
+
│ │ Act │ │ │ DMARC │ │ │ Retry │ │ │ DKIMCreator │ │
|
|
55
|
+
│ └──────┘ │ │ IPRep │ │ └──────────┘ │ │ Templates │ │
|
|
56
|
+
│ │ │ Scan │ │ │ └────────────────┘ │
|
|
57
57
|
│ │ └───────┘ │ │ │
|
|
58
58
|
├───────────┴───────────┴──────────────┴───────────────────────┤
|
|
59
|
-
│ Rust Security Bridge (smartrust IPC)
|
|
59
|
+
│ Rust Security Bridge (smartrust IPC) │
|
|
60
60
|
├──────────────────────────────────────────────────────────────┤
|
|
61
|
-
│ Rust Acceleration Layer
|
|
62
|
-
│ ┌──────────────┐ ┌───────────────┐ ┌──────────────────┐
|
|
63
|
-
│ │ mailer-smtp │ │mailer-security│ │ mailer-core │
|
|
64
|
-
│ │ SMTP Server │ │DKIM/SPF/DMARC │ │ Types/Validation │
|
|
65
|
-
│ │ SMTP Client │ │IP Rep/Content │ │ MIME/Bounce │
|
|
66
|
-
│ │ TLS/AUTH │ │ Scanning │ │ Detection │
|
|
67
|
-
│ └──────────────┘ └───────────────┘ └──────────────────┘
|
|
61
|
+
│ Rust Acceleration Layer │
|
|
62
|
+
│ ┌──────────────┐ ┌───────────────┐ ┌──────────────────┐ │
|
|
63
|
+
│ │ mailer-smtp │ │mailer-security│ │ mailer-core │ │
|
|
64
|
+
│ │ SMTP Server │ │DKIM/SPF/DMARC │ │ Types/Validation │ │
|
|
65
|
+
│ │ SMTP Client │ │IP Rep/Content │ │ MIME/Bounce │ │
|
|
66
|
+
│ │ TLS/AUTH │ │ Scanning │ │ Detection │ │
|
|
67
|
+
│ └──────────────┘ └───────────────┘ └──────────────────┘ │
|
|
68
68
|
└──────────────────────────────────────────────────────────────┘
|
|
69
69
|
```
|
|
70
70
|
|