MCPcopy Create free account
hub / github.com/Mnexa-AI/e2a / enqueueSenderProvision

Method enqueueSenderProvision

internal/httpapi/domains.go:163–167  ·  view source on GitHub ↗

enqueueSenderProvision schedules SES sending-identity provisioning for a verified domain when the dep is wired (no-op otherwise). Best-effort: a missed enqueue is recovered by the next POST /domains/{domain}/verify.

(ctx context.Context, domain string)

Source from the content-addressed store, hash-verified

161// verified domain when the dep is wired (no-op otherwise). Best-effort: a
162// missed enqueue is recovered by the next POST /domains/{domain}/verify.
163func (s *Server) enqueueSenderProvision(ctx context.Context, domain string) {
164 if s.deps.EnqueueSenderProvision != nil {
165 s.deps.EnqueueSenderProvision(ctx, domain)
166 }
167}
168
169// DomainCheckResult is the live-DNS diagnostic surfaced by verify.
170type DomainCheckResult struct {

Callers 1

handleVerifyDomainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected