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)
| 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. |
| 163 | func (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. |
| 170 | type DomainCheckResult struct { |