panel: show the SPF and DMARC records the domain page expects

The domain page generated and displayed the DKIM record but said only
"also configure SPF and DMARC for the domain (see the documentation)".
The concrete example existed — buried in the check's remediation text,
and only visible once the check had already failed. Show both records up
front, host and value with a Copy button, the way the DKIM record is
shown, plus the two things that actually bite: a domain may carry only
one SPF record (add the mechanism to the existing one rather than
publishing a second), and p=none is safe to publish immediately.

The SPF value names the addresses SELFPOST_HOSTNAME resolves to, taken
from the hostname check the page already runs, and falls back to an "a:"
mechanism when it does not resolve. New dnscheck.SPFExample/DMARCExample
are the single source for both the page and the checks' advice, so the
two cannot drift into recommending different records; dnscheck.Query
gains Hostname for the fallback.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-03 16:08:48 +03:00
parent dab7fc1609
commit 9cac9450d6
8 changed files with 199 additions and 15 deletions
+19
View File
@@ -5,6 +5,25 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); version
## [Unreleased]
- panel: the domain page now shows the **SPF and DMARC records it expects**,
with host, value and a Copy button, next to the DKIM record it already
showed — previously it only said "also configure SPF and DMARC (see the
documentation)" and the concrete example appeared only once a check had
already failed. The SPF value names the addresses this server's hostname
resolves to (falling back to an `a:` mechanism if it does not resolve), and
the DNS checks below build their remediation advice from the same source, so
the page and its checks cannot recommend different records.
- panel: one appearance for actions. Several controls — a POST wrapped in an
inline form (Re-check, Export domain, Sign out, New password…), the
`<details>` toggles in the applications table, the delete links — used to
render as bold blue text while everything else was a button, so the same
kind of control looked like two different things, sometimes within one card.
They are all buttons now: filled for a card's own action, compact and
outlined where actions cluster in a table row or the nav bar. An `<a>` is
once again only used for navigation.
- panel: on the domain page, **Applications** and **Add an application** sit
side by side on a wide viewport instead of the form being stranded below the
domain rate limit; they stack again on a narrow one.
- ci: hermetic container e2e suite (`test/e2e`, a separate Go module) gates
image publishing — `make e2e` locally, and `go test ./...` in `test/e2e` as
a required step in `release.yml` before a version tag's image is pushed.