Fix DKIM selector extraction: show all working selectors and report-discovered selectors

- check_dkim now returns ALL matching selectors instead of stopping at first match
- DomainDNSResult.dkim_selectors is now a List[str] instead of a single Optional[str]
- DNSRecordResponse.dkimSelectors is now List[str]
- /selectors endpoint now also returns report_selectors (auto-discovered from DMARC reports)
- Frontend shows all live-check selectors and auto-discovered selectors as read-only
- Updated tests to match new data structures; added tests for multi-selector and report_selectors

Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/87d8b8d9-23c3-4d3b-85a3-8e354e62c768

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-29 23:54:45 +00:00
parent 985f49d61f
commit 596a9b882e
5 changed files with 121 additions and 32 deletions
+23 -9
View File
@@ -169,7 +169,7 @@
Manually configure selectors to check. Selectors seen in received DMARC
reports and common well-known selectors are checked automatically.
</p>
<!-- Existing selectors list -->
<!-- Manually configured selectors -->
<div class="mb-3">
<template x-if="selectors.length === 0">
<p class="text-sm text-muted-foreground italic">No manually configured selectors yet.</p>
@@ -185,6 +185,18 @@
</div>
</template>
</div>
<!-- Auto-discovered selectors from DMARC reports -->
<template x-if="reportSelectors.length > 0">
<div class="mb-3">
<p class="text-xs text-muted-foreground font-semibold uppercase tracking-wide mb-1">From DMARC reports (auto-detected)</p>
<template x-for="sel in reportSelectors" :key="sel">
<div class="flex items-center py-1 px-2 rounded bg-muted/50 border border-dashed mb-1">
<span class="font-mono text-sm text-muted-foreground" x-text="sel"></span>
<span class="ml-2 text-xs text-muted-foreground italic">auto</span>
</div>
</template>
</div>
</template>
<!-- Add selector form -->
<div class="flex items-center gap-2">
<input
@@ -445,9 +457,10 @@ function domainDetailsApp(domainId) {
spf: false,
spfRecord: '',
dkim: false,
dkimSelectors: ''
dkimSelectors: []
},
selectors: [],
reportSelectors: [],
newSelector: '',
selectorError: '',
reports: [],
@@ -481,7 +494,9 @@ function domainDetailsApp(domainId) {
get dkimLiveText() {
if (!this.dns.dkim) return 'No DKIM record found for configured selectors';
if (this.dns.dkimSelectors) return 'selector: ' + this.dns.dkimSelectors;
if (this.dns.dkimSelectors && this.dns.dkimSelectors.length > 0) {
return 'selectors: ' + this.dns.dkimSelectors.join(', ');
}
return 'Verified';
},
@@ -515,6 +530,7 @@ function domainDetailsApp(domainId) {
if (response.ok) {
const data = await response.json();
this.selectors = data.selectors || [];
this.reportSelectors = data.report_selectors || [];
}
} catch (error) {
console.error('Error fetching selectors:', error);
@@ -532,10 +548,9 @@ function domainDetailsApp(domainId) {
body: JSON.stringify({ selector: sel })
});
if (response.ok) {
const data = await response.json();
this.selectors = data.selectors || [];
this.newSelector = '';
// Refresh DNS check to reflect the new selector
// Refresh selectors (both manual and report) and DNS check
this.fetchSelectors();
this.fetchDNSRecords();
} else {
const err = await response.json();
@@ -554,9 +569,8 @@ function domainDetailsApp(domainId) {
{ method: 'DELETE' }
);
if (response.ok) {
const data = await response.json();
this.selectors = data.selectors || [];
// Refresh DNS check after removing a selector
// Refresh selectors (both manual and report) and DNS check
this.fetchSelectors();
this.fetchDNSRecords();
} else {
console.error('Error deleting selector:', response.status);