feat: execution protocol, review agents, DNS and SES findings
Build and deploy / build-and-deploy (push) Failing after 6s
Build and deploy / build-and-deploy (push) Failing after 6s
This commit is contained in:
+47
-2
@@ -106,8 +106,53 @@ SES on submission:
|
||||
of the no-retainer language, and a link to the privacy policy. This email is
|
||||
the reason the form beats a `mailto:` link.
|
||||
|
||||
SES must have SPF, DKIM, and DMARC aligned on `smlcompany.ca` or these land in
|
||||
spam. The guide covers domain verification; **DMARC needs confirming (Q3)**.
|
||||
**Email authentication — verified 2026-08-26, and it is not in place.**
|
||||
|
||||
A DNS query of `smlcompany.ca` found **no SPF record and no DMARC record**. Mail
|
||||
is on Google Workspace (MX `1 smtp.google.com`) with Google DKIM configured, and
|
||||
the SES domain identity reports verified for sending — but neither SPF nor DMARC
|
||||
exists.
|
||||
|
||||
**What is already in place** (Namecheap DNS and the SES console, both inspected
|
||||
2026-08-26):
|
||||
|
||||
| Record | Status |
|
||||
|---|---|
|
||||
| SES DKIM — `3zsnvsjg…`, `jejgp7na3…`, `xpiwyftpo…` `._domainkey` | **Live.** Matches SES exactly. Never delete |
|
||||
| SES DKIM — `f5puwearz…`, `jdue2r22c…`, `kznn3cklv…` `._domainkey` | Orphans from an earlier verification. Inert. **Leave them** — deleting the wrong three breaks DKIM |
|
||||
| `google._domainkey` TXT | Google Workspace DKIM. Never delete |
|
||||
| Two CNAMEs → `jkddzztszm.acm-validations.aws` | ACM certificate validation. **Never delete** — breaks HTTPS at the next renewal |
|
||||
| `adr` CNAME → `d26v23dhgsp2ta.cloudfront.net` | The site |
|
||||
| Custom MAIL FROM | **Not configured.** Optional; would add SPF alignment |
|
||||
|
||||
Add both of these; neither conflicts with anything above:
|
||||
|
||||
| Host | Type | Value |
|
||||
|---|---|---|
|
||||
| `@` | TXT | `v=spf1 include:_spf.google.com include:amazonses.com ~all` |
|
||||
| `_dmarc` | TXT | `v=DMARC1; p=none; rua=mailto:info@smlcompany.ca; fo=1` |
|
||||
|
||||
A domain may publish **only one** `v=spf1` record, so both senders go in one
|
||||
string. Namecheap TXT values take **no surrounding quotes** — quoting them stores
|
||||
the quotes literally and breaks the record.
|
||||
|
||||
**Correction to an earlier version of this spec.** SPF is not what authenticates
|
||||
SES here. Without a custom MAIL FROM domain, SES uses an envelope sender at
|
||||
`amazonses.com`, so its SPF pass is not *aligned* with `smlcompany.ca` and does
|
||||
not satisfy DMARC. **SES satisfies DMARC through DKIM alignment** — that is what
|
||||
the six CNAMEs above are doing, and it already works. The SPF record's real job
|
||||
is authenticating **Google Workspace** mail, which currently has no SPF at all.
|
||||
`include:amazonses.com` is harmless and becomes useful if a custom MAIL FROM
|
||||
domain is configured later.
|
||||
|
||||
Start DMARC at `p=none` — it collects reports without affecting delivery. Move to
|
||||
`quarantine` only after reports come back clean. Reports arrive as XML
|
||||
attachments, so filter them in Gmail, or drop `rua=` entirely and accept having
|
||||
no visibility.
|
||||
|
||||
**Do not delete the ACM validation CNAMEs.** They are how the certificate for
|
||||
`adr.smlcompany.ca` auto-renews. Removing them breaks HTTPS at the next renewal
|
||||
— silently, months later (Q20).
|
||||
|
||||
Failure handling: SES failure must never lose the submission. Write to DynamoDB
|
||||
first, then send. A dead-letter queue on the Lambda, and a CloudWatch alarm on
|
||||
|
||||
Reference in New Issue
Block a user