# Email Security Remediation Domain Audit

**Use case:** 

Find risky domains in bulk and export a remediation queue for missing SPF, weak DMARC, no MX, or DKIM selector gaps.

## Input

```json
{
  "domains": [
    "google.com",
    "gmail.com",
    "example.com"
  ],
  "domainsText": "example.com\nopenai.com\ngithub.com\nyahoo.com",
  "dkimSelectors": [
    "google",
    "selector1",
    "selector2",
    "default",
    "k1"
  ],
  "riskOnly": true,
  "includeRawRecords": false,
  "maxConcurrency": 20,
  "timeoutMs": 5000
}
```

## Output

```json
{
  "domain": {
    "label": "Domain"
  },
  "status": {
    "label": "Status"
  },
  "score": {
    "label": "Score"
  },
  "riskFlags": {
    "label": "Risk flags"
  },
  "mxHosts": {
    "label": "MX hosts"
  },
  "spfStatus": {
    "label": "SPF status"
  },
  "spfRecord": {
    "label": "SPF record"
  },
  "dmarcStatus": {
    "label": "DMARC status"
  },
  "dmarcPolicy": {
    "label": "DMARC policy"
  },
  "dmarcRua": {
    "label": "DMARC rua"
  },
  "dkimResults": {
    "label": "DKIM results"
  },
  "checkedAt": {
    "label": "Checked at"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Domain Email Security Checker](https://apify.com/automation-lab/bulk-domain-email-security-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/bulk-domain-email-security-checker) to learn more, explore other use cases, and run it yourself.