|
|
dfc0eeb323
|
New route to perform a new analysis of the email
continuous-integration/drone/push Build is passing
|
2025-10-20 19:33:23 +07:00 |
|
|
|
0ac51ac06d
|
Use grade instead of numeral notation
|
2025-10-20 19:25:48 +07:00 |
|
|
|
e3d89dc953
|
Add colors on scores
|
2025-10-20 15:39:12 +07:00 |
|
|
|
8bf3b500d9
|
Create a new test when visiting /test/
|
2025-10-20 15:30:45 +07:00 |
|
|
|
0107858ee6
|
Simplify copy of the address
|
2025-10-20 15:30:45 +07:00 |
|
|
|
4d637214de
|
Improve responsiveness
|
2025-10-20 15:30:45 +07:00 |
|
|
|
849bdb53c5
|
Use base32 encoded UUID to reduce address size
|
2025-10-20 15:30:45 +07:00 |
|
|
|
3f5e2c6dd4
|
Add option to add custom content before </head> and </body>
|
2025-10-20 15:13:53 +07:00 |
|
|
|
0084fd9660
|
Indicate when the next inbox check will be done
|
2025-10-20 15:13:53 +07:00 |
|
|
|
a687f5cb6b
|
Improve branding
|
2025-10-20 15:13:53 +07:00 |
|
|
|
243ca4ba11
|
Add a banner in README.md
|
2025-10-20 15:13:53 +07:00 |
|
|
|
3c58f5ccd5
|
Lock file maintenance
|
2025-10-20 15:13:53 +07:00 |
|
|
|
1fa7af4c2b
|
Fix spamassassin report details
|
2025-10-20 15:13:53 +07:00 |
|
|
|
30f774c1fb
|
Expose analyzer
|
2025-10-20 15:13:53 +07:00 |
|
|
|
cd40b7c3ea
|
Refactor authentication.go
|
2025-10-20 15:13:53 +07:00 |
|
|
|
8313fd7d98
|
Implement ARC header check
|
2025-10-20 15:08:45 +07:00 |
|
|
|
6097eb54c6
|
Implement BIMI checks
|
2025-10-20 15:08:45 +07:00 |
|
|
|
7e603ddf4a
|
go mod tidy
|
2025-10-20 15:08:45 +07:00 |
|
|
|
e7aa80bef4
|
Update module golang.org/x/net to v0.46.0
|
2025-10-20 15:08:45 +07:00 |
|
|
|
b2bbf0ee78
|
Add an auto-cleanup worker
|
2025-10-20 15:08:45 +07:00 |
|
|
|
6096e043c6
|
Update dependency @hey-api/openapi-ts to v0.85.2
|
2025-10-20 15:08:45 +07:00 |
|
|
|
9ff2ca30cc
|
Add CI/CD
|
2025-10-20 15:08:45 +07:00 |
|
|
|
4304784796
|
Add an auto-cleanup worker
|
2025-10-20 15:08:45 +07:00 |
|
|
|
6565c6fda4
|
Update dependency @hey-api/openapi-ts to v0.85.2
|
2025-10-20 15:08:44 +07:00 |
|
|
|
079dc6a813
|
Update module github.com/quic-go/quic-go to v0.54.1 [SECURITY]
|
2025-10-20 15:08:44 +07:00 |
|
|
|
16a0f3a158
|
Add renovate.json
|
2025-10-20 15:08:44 +07:00 |
|
|
|
20f5b37e5e
|
Create test on email arrival
|
2025-10-20 15:08:44 +07:00 |
|
|
|
3867fa36a2
|
Add LMTP server
|
2025-10-20 15:02:14 +07:00 |
|
|
|
18c2f95112
|
Refactor main.go
|
2025-10-20 15:02:14 +07:00 |
|
|
|
4b9733531e
|
Implement web ui
|
2025-10-20 15:02:14 +07:00 |
|
|
|
682ca6bb20
|
Web UI setup
|
2025-10-20 15:02:14 +07:00 |
|
|
|
3d823dedd8
|
Add AIO Dockerfile
|
2025-10-20 15:02:14 +07:00 |
|
|
|
62bb85ebec
|
Glue things together
|
2025-10-20 15:02:14 +07:00 |
|
|
|
449a8a2c67
|
Handle config, parse flags
|
2025-10-19 15:47:38 +07:00 |
|
|
|
338a07a577
|
Build report generation system with JSON output
|
2025-10-18 12:26:51 +07:00 |
|
|
|
900c951f8f
|
Implement deliverability scoring algorithm with weighted factors
|
2025-10-18 12:26:51 +07:00 |
|
|
|
b26e56d4af
|
Create content analysis module (HTML parsing, link validation)
|
2025-10-18 12:26:51 +07:00 |
|
|
|
8f53e5a8a5
|
Implement RBL (DNS blacklist) checker
|
2025-10-18 12:26:51 +07:00 |
|
|
|
505cbae9af
|
Build DNS validation module (MX, SPF, DKIM, DMARC records)
|
2025-10-18 12:26:51 +07:00 |
|
|
|
98d1ae135d
|
Implement SpamAssassin score extraction and parsing
- Parses common SpamAssassin headers (X-Spam-Status, X-Spam-Score, X-Spam-Report, etc.)
- Extracts spam score, threshold, and triggered tests
- Implements scoring algorithm (0-2 points) based on:
- Score ≤ 0: 2.0 points (excellent)
- Score < threshold: 1.5-2.0 points (good)
- Score < 2× threshold: 1.0 point (borderline)
- Score < 3× threshold: 0.5 points (poor)
- Score ≥ 3× threshold: 0.0 points (spam)
- Generates detailed checks for significant spam tests (score > 1.0)
- Provides actionable advice based on severity levels
|
2025-10-18 12:26:51 +07:00 |
|
|
|
9ae0bc21b7
|
Implement authentication header analysis (DKIM, DMARC, SPF)
|
2025-10-18 12:26:51 +07:00 |
|
|
|
de23ae3e82
|
Create OpenAPI specs
|
2025-10-18 12:26:51 +07:00 |
|
|
|
ce32953c25
|
Initial commit
|
2025-10-17 15:25:29 +07:00 |
|