mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-07-29 20:04:56 +00:00
* Ignore Claude Code agent worktrees under .claude/worktrees/ Untracked repo snapshots from agent sessions were making repo-root ruff check . fail on stale code and cluttering git status. ruff respects .gitignore, so ignoring the directory fixes both. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Add [general] archive_directory to archive processed local files (#570) Move successfully processed report files given as local path arguments into <archive_directory>/<year>/<month>/<Aggregate|Failure|SMTP-TLS>/, dated from the parsed report's own metadata (aggregate begin_date, failure arrival_date_utc, SMTP TLS begin_date) rather than the filename. Files that fail to parse as a report (ParserError) go to <archive_directory>/Invalid/; other failures (e.g. transient I/O errors) leave the file in place so a later run can retry it. Existing destination files are never overwritten: each candidate name is claimed atomically (O_CREAT | O_EXCL) and collisions get a numeric suffix before the extension. Files already inside the archive directory are excluded from processing (compared via realpath so symlinked spellings still match), so the archive can safely live inside an input directory, as the issue requests. mbox files and mailbox modes are unaffected; mailbox modes keep [mailbox] archive_folder. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Address review feedback on docstrings and the placeholder-cleanup except - _move_file_to_archive's docstring no longer claims the copy2 fallback replaces the placeholder atomically; only the same-filesystem os.rename path is atomic. The fallback is a plain copy-and-overwrite, which is still collision-safe because the placeholder already claimed the name. - The empty except OSError in the placeholder cleanup now carries a comment explaining that it is deliberate best-effort cleanup and the re-raised move failure is the actionable error. - test_general_archive_directory_unset_leaves_attribute_absent's docstring now describes what the assertion actually tests (the attribute staying absent from a bare Namespace) and moves the real-CLI None-default behavior to a parenthetical. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Cover the two defensive exception branches Codecov flagged Codecov's patch report flagged four uncovered lines, all in the two platform-dependent exception branches of the archive helpers: - _exclude_archived_paths's except ValueError branch. Per the Python docs for os.path.commonpath, ValueError is raised when paths "are on the different drives" (Windows) or mix absolute and relative pathnames; both inputs are realpath()-resolved so only the different-drives case remains, which Linux CI can't produce naturally. The new test simulates the raise and asserts the non-comparable path is kept for parsing rather than excluded. - _move_file_to_archive's except OSError placeholder-cleanup branch. The new test fails the move with a non-OSError type and the cleanup with OSError, then asserts the move error is what propagates (the cleanup error is swallowed, not allowed to mask it) and that the zero-byte placeholder survives its failed cleanup. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Tag arrival_date_utc as UTC when parsing the archive date human_timestamp_to_datetime's docstring names arrival_date_utc as exactly the kind of known-UTC naive string that should be parsed with assume_utc=True; _archive_subdir_for_result was parsing it naive. The flag is scoped to the failure branch because the shared call also handles the other two report types: aggregate begin_date is a local-time wall-clock string (timestamp_to_human uses datetime.fromtimestamp), so tagging it UTC would be wrong, and SMTP TLS begin_date carries an RFC 3339 offset, making assume_utc a no-op. No observable behavior change: only the wall-clock year/month fields are read and assume_utc never shifts wall-clock time, so no new test can honestly distinguish the two versions — this aligns the call with its dependency's documented contract and hardens against a future edit adding a real timezone conversion. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Create the archive placeholder with mode 0o600 os.open's mode parameter defaults to 0o777 (masked by the umask), so the O_CREAT|O_EXCL placeholder in _move_file_to_archive was created executable and group-accessible on typical umasks (0o775 under umask 002). Normally it's replaced immediately, but a placeholder that outlives a failed move+cleanup persisted with those permissions. Pass 0o600 explicitly. The mode never reaches the real archived file: os.rename replaces the placeholder's inode outright, and the copy2 fallback's copystat overwrites the mode with the source file's. The leftover-placeholder regression test now also asserts the surviving placeholder has no owner-exec or group/other bits (umask-independent, since the umask only clears bits); the assertion fails against the unfixed default-mode call. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1205 lines
49 KiB
Markdown
1205 lines
49 KiB
Markdown
# Using parsedmarc
|
||
|
||
## CLI help
|
||
|
||
```text
|
||
usage: parsedmarc [-h] [-c CONFIG_FILE] [-r] [--strip-attachment-payloads] [-o OUTPUT]
|
||
[--aggregate-json-filename AGGREGATE_JSON_FILENAME] [--failure-json-filename FAILURE_JSON_FILENAME]
|
||
[--smtp-tls-json-filename SMTP_TLS_JSON_FILENAME] [--aggregate-csv-filename AGGREGATE_CSV_FILENAME]
|
||
[--failure-csv-filename FAILURE_CSV_FILENAME] [--smtp-tls-csv-filename SMTP_TLS_CSV_FILENAME]
|
||
[-n NAMESERVERS [NAMESERVERS ...]] [-t DNS_TIMEOUT] [--dns-retries DNS_RETRIES] [--offline] [-s]
|
||
[-w] [--verbose] [--debug] [--log-file LOG_FILE] [--no-prettify-json] [-v]
|
||
[file_path ...]
|
||
|
||
Parses DMARC reports
|
||
|
||
positional arguments:
|
||
file_path one or more paths to aggregate or failure report files, emails, mbox files, or directories
|
||
containing them
|
||
|
||
options:
|
||
-h, --help show this help message and exit
|
||
-c CONFIG_FILE, --config-file CONFIG_FILE
|
||
a path to a configuration file (--silent implied)
|
||
-r, --recursive search directories given as file_path recursively, and enable '**' recursion in glob patterns
|
||
--strip-attachment-payloads
|
||
remove attachment payloads from failure report output
|
||
-o OUTPUT, --output OUTPUT
|
||
write output files to the given directory
|
||
--aggregate-json-filename AGGREGATE_JSON_FILENAME
|
||
filename for the aggregate JSON output file
|
||
--failure-json-filename FAILURE_JSON_FILENAME
|
||
filename for the failure JSON output file
|
||
--smtp-tls-json-filename SMTP_TLS_JSON_FILENAME
|
||
filename for the SMTP TLS JSON output file
|
||
--aggregate-csv-filename AGGREGATE_CSV_FILENAME
|
||
filename for the aggregate CSV output file
|
||
--failure-csv-filename FAILURE_CSV_FILENAME
|
||
filename for the failure CSV output file
|
||
--smtp-tls-csv-filename SMTP_TLS_CSV_FILENAME
|
||
filename for the SMTP TLS CSV output file
|
||
-n NAMESERVERS [NAMESERVERS ...], --nameservers NAMESERVERS [NAMESERVERS ...]
|
||
nameservers to query
|
||
-t DNS_TIMEOUT, --dns_timeout DNS_TIMEOUT
|
||
number of seconds to wait for an answer from DNS (default: 2.0)
|
||
--dns-retries DNS_RETRIES
|
||
number of times to retry DNS queries on timeout or other transient errors (default: 0)
|
||
--offline do not make online queries for geolocation or DNS
|
||
-s, --silent only print errors
|
||
-w, --warnings print warnings in addition to errors
|
||
--verbose more verbose output
|
||
--debug print debugging information
|
||
--log-file LOG_FILE output logging to a file
|
||
--no-prettify-json output JSON in a single line without indentation
|
||
-v, --version show program's version number and exit
|
||
```
|
||
|
||
:::{note}
|
||
Starting in `parsedmarc` 6.0.0, most CLI options were moved to a
|
||
configuration file, described below.
|
||
:::
|
||
|
||
## Configuration file
|
||
|
||
`parsedmarc` can be configured by supplying the path to an INI file
|
||
|
||
```bash
|
||
parsedmarc -c /etc/parsedmarc.ini
|
||
```
|
||
|
||
For example
|
||
|
||
```ini
|
||
# This is an example comment
|
||
|
||
[general]
|
||
save_aggregate = True
|
||
save_failure = True
|
||
|
||
[imap]
|
||
host = imap.example.com
|
||
user = dmarcresports@example.com
|
||
password = $uperSecure
|
||
|
||
[mailbox]
|
||
watch = True
|
||
delete = False
|
||
|
||
[elasticsearch]
|
||
hosts = 127.0.0.1:9200
|
||
ssl = False
|
||
|
||
[opensearch]
|
||
hosts = https://admin:admin@127.0.0.1:9200
|
||
ssl = True
|
||
|
||
[splunk_hec]
|
||
url = https://splunkhec.example.com
|
||
token = HECTokenGoesHere
|
||
index = email
|
||
|
||
[s3]
|
||
bucket = my-bucket
|
||
path = parsedmarc
|
||
|
||
[syslog]
|
||
server = localhost
|
||
port = 514
|
||
|
||
[gelf]
|
||
host = logger
|
||
port = 12201
|
||
mode = tcp
|
||
|
||
[webhook]
|
||
aggregate_url = https://aggregate_url.example.com
|
||
failure_url = https://failure_url.example.com
|
||
smtp_tls_url = https://smtp_tls_url.example.com
|
||
timeout = 60
|
||
```
|
||
|
||
The full set of configuration options are:
|
||
|
||
- `general`
|
||
- `save_aggregate` - bool: Save aggregate report data to
|
||
Elasticsearch, Splunk and/or S3
|
||
- `save_failure` - bool: Save failure report data to
|
||
Elasticsearch, Splunk and/or S3
|
||
- `save_smtp_tls` - bool: Save SMTP-STS report data to
|
||
Elasticsearch, Splunk and/or S3
|
||
- `index_prefix_domain_map` - bool: A path mapping of Opensearch/Elasticsearch index prefixes to domain names
|
||
- `strip_attachment_payloads` - bool: Remove attachment
|
||
payloads from results
|
||
- `silent` - bool: Set this to `False` to output results to STDOUT
|
||
- `output` - str: Directory to place JSON and CSV files in. This is required if you set either of the JSON output file options.
|
||
- `archive_directory` - str: Optional. When set, successfully
|
||
processed report files given as local file/directory path
|
||
arguments are moved into
|
||
`<archive_directory>/<year>/<month>/<Aggregate|Failure|SMTP-TLS>/`
|
||
(year and month come from the report's own begin/arrival date, with
|
||
the month zero-padded). A successfully parsed report whose archive
|
||
date can't be determined is left in place with a logged warning.
|
||
Files that fail to parse as a report are moved to
|
||
`<archive_directory>/Invalid/`; files that fail for other reasons,
|
||
such as transient I/O errors, are left in place so a later run can
|
||
retry them. An existing destination file is never overwritten; a
|
||
numeric suffix is appended before the extension (e.g.
|
||
`report-1.xml`). This applies only to direct local file input —
|
||
reports fetched from mailboxes (IMAP, Microsoft Graph, Gmail API,
|
||
Maildir) use `[mailbox] archive_folder` instead, and mbox files are
|
||
never moved. Files already inside `archive_directory` are excluded
|
||
from processing, so the archive may safely live inside an input
|
||
directory. A failed move is logged and does not stop the run.
|
||
- `aggregate_json_filename` - str: filename for the aggregate
|
||
JSON output file
|
||
- `failure_json_filename` - str: filename for the failure
|
||
JSON output file
|
||
- `ip_db_path` - str: An optional custom path to a MMDB file
|
||
from IPinfo, MaxMind, or DBIP
|
||
- `ipinfo_url` - str: Overrides the default download URL for the
|
||
bundled IPinfo Lite MMDB (env var:
|
||
`PARSEDMARC_GENERAL_IPINFO_URL`). The pre-9.10 name `ip_db_url` is
|
||
still accepted as a deprecated alias and logs a warning.
|
||
- `ipinfo_api_token` - str: Optional [IPinfo Lite REST API] token. When
|
||
set, IP lookups hit the API first for the freshest country/ASN data
|
||
and fall back to the local MMDB on rate limit, quota exhaustion, or
|
||
network errors. An invalid token exits the process with a fatal error.
|
||
Ignored when `offline` is set. The Lite tier is free and has no
|
||
documented monthly request cap; see the IPinfo Lite docs for current
|
||
limits. (env var: `PARSEDMARC_GENERAL_IPINFO_API_TOKEN`)
|
||
- `offline` - bool: Do not use online queries for geolocation
|
||
or DNS. Also disables automatic downloading of the IP-to-country
|
||
database and reverse DNS map.
|
||
- `always_use_local_files` - Disables the download of the
|
||
IP-to-country database and reverse DNS map
|
||
- `local_reverse_dns_map_path` - Overrides the default local file path to use for the reverse DNS map
|
||
- `reverse_dns_map_url` - Overrides the default download URL for the reverse DNS map
|
||
- `local_psl_overrides_path` - Overrides the default local file path to use for the PSL overrides list
|
||
- `psl_overrides_url` - Overrides the default download URL for the PSL overrides list
|
||
- `nameservers` - str: A comma separated list of
|
||
DNS resolvers (Default: `[Cloudflare's public resolvers]`)
|
||
- `dns_test_address` - str: a dummy address used for DNS pre-flight checks
|
||
(Default: 1.1.1.1)
|
||
- `dns_timeout` - float: DNS timeout period
|
||
- `debug` - bool: Print debugging messages
|
||
- `silent` - bool: Only print errors (Default: `True`)
|
||
- `fail_on_output_error` - bool: Exit with a non-zero status code if
|
||
any configured output destination fails while saving/publishing
|
||
reports (Default: `False`)
|
||
- `log_file` - str: Write log messages to a file at this path
|
||
- `n_procs` - int: Number of processes to run in parallel when
|
||
parsing report files passed directly as CLI arguments, messages
|
||
in mbox files, and messages from mailbox connections (IMAP,
|
||
Microsoft Graph, Gmail API, Maildir), including watch mode
|
||
(Default: `1`)
|
||
|
||
:::{note}
|
||
Setting this to a number larger than one can improve
|
||
performance when processing thousands of files or messages
|
||
:::
|
||
|
||
:::{note}
|
||
Only parsing is parallelized across worker processes. Fetching
|
||
messages, deduplicating reports, archiving/deleting mailbox
|
||
messages, and saving/publishing to outputs all stay sequential
|
||
in the main process. Each worker process keeps its own DNS/GeoIP
|
||
cache.
|
||
:::
|
||
|
||
- `mailbox`
|
||
- `reports_folder` - str: The mailbox folder (or label for
|
||
Gmail) where the incoming reports can be found
|
||
(Default: `INBOX`)
|
||
- `archive_folder` - str: The mailbox folder (or label for
|
||
Gmail) to sort processed emails into (Default: `Archive`)
|
||
- `watch` - bool: Use the IMAP `IDLE` command to process
|
||
messages as they arrive or poll MS Graph for new messages
|
||
- `delete` - bool: Delete messages after processing them,
|
||
instead of archiving them
|
||
- `test` - bool: Do not move or delete messages
|
||
- `batch_size` - int: Number of messages to read and process
|
||
before saving. Default `10`. Use `0` for no limit.
|
||
- `check_timeout` - int: Number of seconds to wait for a IMAP
|
||
IDLE response or the number of seconds until the next
|
||
mail check (Default: `30`)
|
||
- `since` - str: Search for messages since certain time. (Examples: `5m|3h|2d|1w`)
|
||
Acceptable units - {"m":"minutes", "h":"hours", "d":"days", "w":"weeks"}.
|
||
Defaults to `1d` if incorrect value is provided.
|
||
- `imap`
|
||
- `host` - str: The IMAP server hostname or IP address
|
||
- `port` - int: The IMAP server port (Default: `993`)
|
||
|
||
:::{note}
|
||
`%` characters must be escaped with another `%` character,
|
||
so use `%%` wherever a `%` character is used.
|
||
:::
|
||
|
||
:::{note}
|
||
Starting in version 8.0.0, most options from the `imap`
|
||
section have been moved to the `mailbox` section.
|
||
:::
|
||
|
||
:::{note}
|
||
If your host recommends another port, still try 993
|
||
:::
|
||
|
||
- `ssl` - bool: Use an encrypted SSL/TLS connection
|
||
(Default: `True`)
|
||
- `skip_certificate_verification` - bool: Skip certificate
|
||
verification (not recommended)
|
||
- `user` - str: The IMAP user
|
||
- `password` - str: The IMAP password
|
||
- `msgraph`
|
||
- `auth_method` - str: Authentication method, valid types are
|
||
`UsernamePassword`, `DeviceCode`, `ClientSecret`, `Certificate`, or
|
||
`ClientAssertion` (Default: `UsernamePassword`).
|
||
- `user` - str: The M365 user, required when the auth method is
|
||
UsernamePassword
|
||
- `password` - str: The user password, required when the auth
|
||
method is UsernamePassword
|
||
- `client_id` - str: The app registration's client ID
|
||
- `client_secret` - str: The app registration's secret
|
||
- `certificate_path` - str: Path to a PEM or PKCS12 certificate
|
||
including the private key. Required when the auth method is
|
||
`Certificate`
|
||
- `certificate_password` - str: Optional password for the
|
||
certificate file when using `Certificate` auth
|
||
- `client_assertion` - str: A signed JWT client assertion, required
|
||
when the auth method is `ClientAssertion`
|
||
|
||
:::{note}
|
||
`client_assertion` is a static value, so it is only usable for as
|
||
long as the JWT it contains remains unexpired (assertions are
|
||
typically short-lived, on the order of minutes). It is best suited
|
||
to short one-shot runs; for long-running `watch` mode, prefer
|
||
`Certificate` or `ClientSecret` auth, which can refresh
|
||
indefinitely.
|
||
:::
|
||
- `tenant_id` - str: The Azure AD tenant ID. This is required
|
||
for all auth methods except UsernamePassword.
|
||
- `mailbox` - str: The mailbox name. This defaults to the
|
||
current user if using the UsernamePassword auth method, but
|
||
could be a shared mailbox if the user has access to the mailbox
|
||
- `graph_url` - str: Microsoft Graph URL. Allows for use of National Clouds (ex Azure Gov)
|
||
(Default: https://graph.microsoft.com)
|
||
|
||
:::{warning}
|
||
Setting `graph_url` alone is **not** sufficient for a national/sovereign
|
||
cloud tenant. It only changes the Microsoft Graph API root; the
|
||
Microsoft Entra ID (Azure AD) token endpoint used for authentication is
|
||
not currently configurable in parsedmarc or `mailsuite`, and always
|
||
defaults to the global `https://login.microsoftonline.com`. A true
|
||
national-cloud deployment also needs its own Entra ID endpoint, so
|
||
`graph_url` by itself only helps if your tenant is registered in the
|
||
global cloud but you specifically need to reach one of these Graph API
|
||
roots (per [Microsoft's national cloud deployment docs][ms-graph-clouds]):
|
||
|
||
| National cloud | Microsoft Graph URL | Entra ID endpoint (not configurable here) |
|
||
|---|---|---|
|
||
| Global (default) | `https://graph.microsoft.com` | `https://login.microsoftonline.com` |
|
||
| US Government L4 (GCC High) | `https://graph.microsoft.us` | `https://login.microsoftonline.us` |
|
||
| US Government L5 (DoD) | `https://dod-graph.microsoft.us` | `https://login.microsoftonline.us` |
|
||
| China, operated by 21Vianet | `https://microsoftgraph.chinacloudapi.cn` | `https://login.chinacloudapi.cn` |
|
||
|
||
[ms-graph-clouds]: https://learn.microsoft.com/en-us/graph/deployments
|
||
:::
|
||
- `token_file` - str: Path to save the token file
|
||
(Default: `.token`)
|
||
- `allow_unencrypted_storage` - bool: Allows the Azure Identity
|
||
module to fall back to unencrypted token cache (Default: `False`).
|
||
Even if enabled, the cache will always try encrypted storage first.
|
||
|
||
:::{note}
|
||
`token_file` stores the serialized authentication record; the
|
||
underlying MSAL persistent token cache is separately named
|
||
`parsedmarc`, not `mailsuite`'s own default cache name. This is
|
||
deliberate: the Graph mailbox backend used to live directly in
|
||
parsedmarc, and moved into the `mailsuite` dependency in parsedmarc
|
||
9.11.0. Explicitly keeping the `parsedmarc` cache name means tokens
|
||
cached before that move keep working after upgrading — there is
|
||
nothing to migrate and no action needed on your part.
|
||
:::
|
||
|
||
:::{note}
|
||
You must create an app registration in Azure AD and have an
|
||
admin grant the Microsoft Graph `Mail.ReadWrite`
|
||
(delegated) permission to the app. If you are using
|
||
`UsernamePassword` auth and the mailbox is different from the
|
||
username, you must grant the app `Mail.ReadWrite.Shared`.
|
||
:::
|
||
|
||
| Auth method | Reading (own mailbox) | Reading (shared mailbox) |
|
||
|---|---|---|
|
||
| `UsernamePassword` / `DeviceCode` (delegated) | `Mail.ReadWrite` | `Mail.ReadWrite.Shared` |
|
||
| `ClientSecret` / `Certificate` / `ClientAssertion` (application) | `Mail.ReadWrite` (application), scoped via `New-ApplicationAccessPolicy` | same as own mailbox — app-only access is scoped by policy, not by permission name |
|
||
|
||
:::{tip}
|
||
**Troubleshooting connections.** Run with `--verbose` to log a
|
||
redacted connection summary (auth method, tenant, client ID,
|
||
mailbox, Graph URL) before the connection attempt, and with
|
||
`--debug` to additionally surface the underlying library activity —
|
||
`azure.identity` token acquisition (including `AADSTS` error codes
|
||
from Entra ID, which distinguish a local configuration problem from
|
||
an Exchange Online-side one), Microsoft Graph SDK requests, and
|
||
`httpx` HTTP request lines. Secret values (passwords, client
|
||
secrets, certificate passwords) are never written to logs.
|
||
Connection, mailbox fetch, message send, and `--watch` failures
|
||
each log a single ERROR line naming the mailbox, tenant, auth
|
||
method, and the Graph `request-id`/`client-request-id` when
|
||
available — worth quoting verbatim when contacting Microsoft
|
||
support.
|
||
:::
|
||
|
||
:::{warning}
|
||
If you are using the `ClientSecret` auth method, you need to
|
||
grant the `Mail.ReadWrite` (application) permission to the
|
||
app. You must also restrict the application's access to a
|
||
specific mailbox since it allows all mailboxes by default.
|
||
Use the `New-ApplicationAccessPolicy` command in the
|
||
Exchange PowerShell module. If you need to scope the policy to
|
||
shared mailboxes, you can add them to a mail enabled security
|
||
group and use that as the group id.
|
||
|
||
```powershell
|
||
New-ApplicationAccessPolicy -AccessRight RestrictAccess
|
||
-AppId "<CLIENT_ID>" -PolicyScopeGroupId "<MAILBOX>"
|
||
-Description "Restrict access to dmarc reports mailbox."
|
||
```
|
||
|
||
The same application permission and mailbox scoping guidance
|
||
applies to the `Certificate` and `ClientAssertion` auth methods.
|
||
|
||
:::
|
||
|
||
**Sending the summary email via Microsoft Graph.**
|
||
When `[msgraph]` is configured and `[smtp]` has a `to` value but no
|
||
`host`, the periodic summary email is sent through the same
|
||
already-authenticated Graph mailbox connection used for reading
|
||
(`/users/{mailbox}/sendMail`), and a copy is saved to Sent Items.
|
||
When `[smtp] host` is set, SMTP is used regardless of whether
|
||
`[msgraph]` is also configured — SMTP is always preferred, with no
|
||
automatic fallback to Graph on SMTP failure.
|
||
|
||
Example config combining `[msgraph]` with a `[smtp]` section that
|
||
only sets `to`/`subject` (no `host`):
|
||
|
||
```ini
|
||
[msgraph]
|
||
auth_method = Certificate
|
||
client_id = ...
|
||
tenant_id = ...
|
||
mailbox = dmarc-reports@example.com
|
||
certificate_path = /path/to/cert.pem
|
||
|
||
[smtp]
|
||
to = admin@example.com
|
||
subject = DMARC Summary
|
||
```
|
||
|
||
Required Microsoft Graph permissions, in addition to the
|
||
reading-related permissions documented above:
|
||
|
||
| Auth method | Reading | Sending (own mailbox) | Sending (shared mailbox) |
|
||
|---|---|---|---|
|
||
| `UsernamePassword` / `DeviceCode` (delegated) | `Mail.ReadWrite` (+`.Shared` for shared) | `Mail.Send` | `Mail.Send.Shared` |
|
||
| `ClientSecret` / `Certificate` / `ClientAssertion` (application) | `Mail.ReadWrite` (application) | `Mail.Send` (application) | `Mail.Send` (application), scoped via `New-ApplicationAccessPolicy` |
|
||
|
||
:::{warning}
|
||
Graph-based sending is only confirmed to work with the app-only
|
||
auth methods (`ClientSecret`, `Certificate`, `ClientAssertion`).
|
||
The delegated auth methods (`UsernamePassword`, `DeviceCode`)
|
||
currently request only the `Mail.ReadWrite`(`.Shared`) scope when
|
||
authenticating, not `Mail.Send` — so a delegated connection's
|
||
access token will not carry `Mail.Send` even if an administrator
|
||
has granted it, and `/sendMail` calls are expected to fail with an
|
||
access-denied error regardless of what's granted in Azure AD. Use
|
||
an app-only auth method if you need Graph-based sending.
|
||
:::
|
||
|
||
**Minimal example configs.** Each auth method needs a different
|
||
minimum set of keys. These read-only examples omit `[smtp]`; see
|
||
above for adding Graph-based sending on top of any of them.
|
||
|
||
`UsernamePassword` (delegated, own mailbox):
|
||
```ini
|
||
[msgraph]
|
||
auth_method = UsernamePassword
|
||
client_id = ...
|
||
client_secret = ...
|
||
user = dmarc-reports@example.com
|
||
password = ...
|
||
```
|
||
|
||
`DeviceCode` (delegated, interactive sign-in on first run — `user`
|
||
is the account that signs in; `mailbox` is the shared mailbox it
|
||
reads, and only needs to differ from `user` to request
|
||
`Mail.ReadWrite.Shared` instead of plain `Mail.ReadWrite`):
|
||
```ini
|
||
[msgraph]
|
||
auth_method = DeviceCode
|
||
client_id = ...
|
||
tenant_id = ...
|
||
user = signing-in-user@example.com
|
||
mailbox = dmarc-reports@example.com
|
||
```
|
||
|
||
`ClientSecret` (app-only):
|
||
```ini
|
||
[msgraph]
|
||
auth_method = ClientSecret
|
||
client_id = ...
|
||
tenant_id = ...
|
||
client_secret = ...
|
||
mailbox = dmarc-reports@example.com
|
||
```
|
||
|
||
`Certificate` (app-only):
|
||
```ini
|
||
[msgraph]
|
||
auth_method = Certificate
|
||
client_id = ...
|
||
tenant_id = ...
|
||
certificate_path = /path/to/cert.pem
|
||
mailbox = dmarc-reports@example.com
|
||
```
|
||
|
||
`ClientAssertion` (app-only, short-lived JWT — see the note above
|
||
about its unsuitability for `watch` mode):
|
||
```ini
|
||
[msgraph]
|
||
auth_method = ClientAssertion
|
||
client_id = ...
|
||
tenant_id = ...
|
||
client_assertion = ...
|
||
mailbox = dmarc-reports@example.com
|
||
```
|
||
|
||
:::{tip}
|
||
**Troubleshooting.**
|
||
|
||
| Error | Cause | Fix |
|
||
|---|---|---|
|
||
| *"...needs permission to access resources in your organization that only an admin can grant"* / "Admin consent required" | A delegated auth method (`UsernamePassword`, `DeviceCode`) is authenticating with a scope (`Mail.ReadWrite` or `Mail.ReadWrite.Shared`) the tenant admin hasn't consented to yet. | Have an Entra ID admin grant consent: Azure Portal → **Enterprise Applications** → *your app* → **Permissions** → **Grant admin consent**, or `az ad app permission admin-consent --id <CLIENT_ID>`. This is separate from the `New-ApplicationAccessPolicy` step above, which only applies to app-only auth. |
|
||
| `ErrorItemNotFound: ... Default folder Root not found` | `mailsuite` can resolve the well-known folders (`Inbox`, `Archive`, `Drafts`, `Sent Items`, `Deleted Items`, `Junk Email`) even when a mailbox's folder hierarchy hasn't fully provisioned, but a **custom, non-well-known** `reports_folder` name still fails to resolve on such a mailbox. | Point `reports_folder` at (or under) one of the six well-known folder names above, or sign into the (shared) mailbox once via Outlook/OWA to force Exchange to provision it, then retry. |
|
||
| `RuntimeError: Event loop is closed` | Historical bug, fixed in `mailsuite` 2.0.2. Not reachable with the `mailsuite>=2.2.2` this project requires. | Confirm your installed `mailsuite` version is current (`pip show mailsuite`); upgrade if it's somehow pinned below 2.0.2. |
|
||
| Invalid/rejected timestamp in the `since`/`receivedDateTime` filter | Historical bug (parsedmarc [#706](https://github.com/domainaware/parsedmarc/pull/706)/[#708](https://github.com/domainaware/parsedmarc/pull/708)): older versions appended a spurious `Z` to an already-UTC-offset ISO timestamp. Fixed since parsedmarc 9.5.1/9.5.5. | Upgrade parsedmarc if you're on a version older than 9.5.5. |
|
||
:::
|
||
- `elasticsearch`
|
||
- `hosts` - str: A comma separated list of hostnames and ports
|
||
or URLs (e.g. `127.0.0.1:9200` or
|
||
`https://user:secret@localhost`)
|
||
|
||
:::{note}
|
||
Special characters in the username or password must be
|
||
[URL encoded].
|
||
:::
|
||
- `user` - str: Basic auth username
|
||
- `password` - str: Basic auth password
|
||
- `api_key` - str: API key
|
||
- `ssl` - bool: Use an encrypted SSL/TLS connection
|
||
(Default: `True`)
|
||
- `timeout` - float: Timeout in seconds (Default: 60)
|
||
- `cert_path` - str: Path to a trusted certificates
|
||
- `skip_certificate_verification` - bool: Skip certificate
|
||
verification (not recommended)
|
||
- `index_suffix` - str: A suffix to apply to the index names
|
||
- `index_prefix` - str: A prefix to apply to the index names
|
||
- `monthly_indexes` - bool: Use monthly indexes instead of daily indexes
|
||
- `number_of_shards` - int: The number of shards to use when
|
||
creating the index (Default: `1`)
|
||
- `number_of_replicas` - int: The number of replicas to use when
|
||
creating the index (Default: `0`)
|
||
- `serverless` - bool: Set to `True` when targeting an Elastic Cloud
|
||
Serverless project. Serverless manages sharding and replication itself
|
||
and rejects the `number_of_shards` / `number_of_replicas` index settings
|
||
with HTTP 400. With this flag set, parsedmarc strips those keys from the
|
||
settings sent at index creation; any other settings (e.g.
|
||
`refresh_interval`) are passed through unchanged (Default: `False`)
|
||
- `opensearch`
|
||
- `hosts` - str: A comma separated list of hostnames and ports
|
||
or URLs (e.g. `127.0.0.1:9200` or
|
||
`https://user:secret@localhost`)
|
||
|
||
:::{note}
|
||
Special characters in the username or password must be
|
||
[URL encoded].
|
||
:::
|
||
- `user` - str: Basic auth username
|
||
- `password` - str: Basic auth password
|
||
- `api_key` - str: API key
|
||
- `auth_type` - str: Authentication type: `basic` (default) or `awssigv4` (the key `authentication_type` is accepted as an alias for this option)
|
||
- `aws_region` - str: AWS region for SigV4 authentication
|
||
(required when `auth_type = awssigv4`)
|
||
- `aws_service` - str: AWS service for SigV4 signing (Default: `es`)
|
||
- `ssl` - bool: Use an encrypted SSL/TLS connection
|
||
(Default: `True`)
|
||
- `timeout` - float: Timeout in seconds (Default: 60)
|
||
- `cert_path` - str: Path to a trusted certificates
|
||
- `skip_certificate_verification` - bool: Skip certificate
|
||
verification (not recommended)
|
||
- `index_suffix` - str: A suffix to apply to the index names
|
||
- `index_prefix` - str: A prefix to apply to the index names
|
||
- `monthly_indexes` - bool: Use monthly indexes instead of daily indexes
|
||
- `number_of_shards` - int: The number of shards to use when
|
||
creating the index (Default: `1`)
|
||
- `number_of_replicas` - int: The number of replicas to use when
|
||
creating the index (Default: `0`)
|
||
- `splunk_hec`
|
||
- `url` - str: The URL of the Splunk HTTP Events Collector (HEC)
|
||
- `token` - str: The HEC token
|
||
- `index` - str: The Splunk index to use
|
||
- `skip_certificate_verification` - bool: Skip certificate
|
||
verification (not recommended)
|
||
- `kafka`
|
||
- `hosts` - str: A comma separated list of Kafka hosts
|
||
- `user` - str: The Kafka user
|
||
- `passsword` - str: The Kafka password
|
||
- `ssl` - bool: Use an encrypted SSL/TLS connection (Default: `True`)
|
||
- `skip_certificate_verification` - bool: Skip certificate
|
||
verification (not recommended)
|
||
- `aggregate_topic` - str: The Kafka topic for aggregate reports
|
||
- `failure_topic` - str: The Kafka topic for failure reports
|
||
- `smtp`
|
||
|
||
The results email is only sent when at least one aggregate, failure,
|
||
or SMTP TLS report was parsed during the run; an empty run (e.g. an
|
||
empty inbox) skips the email instead of sending headers-only CSVs.
|
||
|
||
- `host` - str: The SMTP hostname. Required unless `[msgraph]` is
|
||
configured, in which case omitting it sends the summary via
|
||
Microsoft Graph instead — see "Sending the summary email via
|
||
Microsoft Graph" above.
|
||
- `port` - int: The SMTP port (Default: `25`)
|
||
- `ssl` - bool: Require SSL/TLS instead of using STARTTLS
|
||
- `skip_certificate_verification` - bool: Skip certificate
|
||
verification (not recommended)
|
||
- `user` - str: the SMTP username. SMTP-only; not used when sending
|
||
via Microsoft Graph.
|
||
- `password` - str: the SMTP password. SMTP-only; not used when
|
||
sending via Microsoft Graph.
|
||
- `from` - str: The From header to use in the email. SMTP-only.
|
||
When sent via Microsoft Graph, the message's `From` is always the
|
||
`[msgraph]` mailbox — `[smtp] from` has no effect.
|
||
- `to` - list: A list of email addresses to send to
|
||
- `subject` - str: The Subject header to use in the email
|
||
(Default: `parsedmarc report`)
|
||
- `attachment` - str: The ZIP attachment filenames
|
||
(Default: `DMARC-<YYYY-MM-DD>.zip`)
|
||
- `message` - str: The email message
|
||
(Default: `Please see the attached DMARC results.`)
|
||
|
||
:::{note}
|
||
`%` characters must be escaped with another `%` character,
|
||
so use `%%` wherever a `%` character is used.
|
||
:::
|
||
- `postgresql`
|
||
- `host` - str: The PostgreSQL server hostname or IP address.
|
||
Required unless `connection_string` is provided.
|
||
- `port` - int: The PostgreSQL server port (Default: `5432`)
|
||
- `user` - str: The database user name (Optional)
|
||
- `password` - str: The database user password (Optional)
|
||
- `database` - str: The database name (Optional)
|
||
- `connection_string` - str: A full libpq connection string or URI
|
||
(e.g. `postgresql://user:pass@host/dbname`). When provided,
|
||
all individual parameters above are ignored.
|
||
|
||
The PostgreSQL backend is an optional extra. Install it with
|
||
`pip install parsedmarc[postgresql]` (it pulls in `psycopg`); the
|
||
prebuilt binary wheels are not available for every platform, which is
|
||
why it is not a mandatory dependency. The prebuilt Docker image
|
||
(`ghcr.io/domainaware/parsedmarc`) already bundles this extra, so the
|
||
PostgreSQL backend works out of the box in the container — `psycopg`
|
||
ships `amd64` and `arm64` binary wheels, both of which the image
|
||
supports.
|
||
|
||
Tables are created automatically on first run using
|
||
`CREATE TABLE IF NOT EXISTS`, so no manual schema migration is needed
|
||
for fresh installations.
|
||
|
||
**Example configuration:**
|
||
|
||
```ini
|
||
[postgresql]
|
||
host = localhost
|
||
port = 5432
|
||
user = parsedmarc
|
||
password = secret
|
||
database = parsedmarc
|
||
```
|
||
|
||
Or using a DSN/URI:
|
||
|
||
```ini
|
||
[postgresql]
|
||
connection_string = postgresql://parsedmarc:secret@localhost/parsedmarc
|
||
```
|
||
|
||
Saving parsed data to PostgreSQL is controlled by the `[general]`
|
||
options `save_aggregate`, `save_failure`, and `save_smtp_tls`
|
||
(`save_forensic` is still accepted as a deprecated alias for
|
||
`save_failure`). These flags must be set to `True` for the
|
||
corresponding report types (aggregate DMARC, failure DMARC, and
|
||
SMTP TLS reports) or no data will be written to PostgreSQL, even if
|
||
this section is configured.
|
||
|
||
- `s3`
|
||
- `bucket` - str: The S3 bucket name
|
||
- `path` - str: The path to upload reports to (Default: `/`)
|
||
- `region_name` - str: The region name (Optional)
|
||
- `endpoint_url` - str: The endpoint URL (Optional)
|
||
- `access_key_id` - str: The access key id (Optional)
|
||
- `secret_access_key` - str: The secret access key (Optional)
|
||
- `syslog`
|
||
- `server` - str: The Syslog server name or IP address
|
||
- `port` - int: The port to use (Default: `514`)
|
||
- `protocol` - str: The protocol to use: `udp`, `tcp`, or `tls` (Default: `udp`)
|
||
- `cafile_path` - str: Path to CA certificate file for TLS server verification (Optional)
|
||
- `certfile_path` - str: Path to client certificate file for TLS authentication (Optional)
|
||
- `keyfile_path` - str: Path to client private key file for TLS authentication (Optional)
|
||
- `timeout` - float: Connection timeout in seconds for TCP/TLS (Default: `5.0`)
|
||
- `retry_attempts` - int: Number of retry attempts for failed connections (Default: `3`)
|
||
- `retry_delay` - int: Delay in seconds between retry attempts (Default: `5`)
|
||
|
||
**Example UDP configuration (default):**
|
||
|
||
```ini
|
||
[syslog]
|
||
server = syslog.example.com
|
||
port = 514
|
||
```
|
||
|
||
**Example TCP configuration:**
|
||
|
||
```ini
|
||
[syslog]
|
||
server = syslog.example.com
|
||
port = 6514
|
||
protocol = tcp
|
||
timeout = 10.0
|
||
retry_attempts = 5
|
||
```
|
||
|
||
**Example TLS configuration with server verification:**
|
||
|
||
```ini
|
||
[syslog]
|
||
server = syslog.example.com
|
||
port = 6514
|
||
protocol = tls
|
||
cafile_path = /path/to/ca-cert.pem
|
||
timeout = 10.0
|
||
```
|
||
|
||
**Example TLS configuration with mutual authentication:**
|
||
|
||
```ini
|
||
[syslog]
|
||
server = syslog.example.com
|
||
port = 6514
|
||
protocol = tls
|
||
cafile_path = /path/to/ca-cert.pem
|
||
certfile_path = /path/to/client-cert.pem
|
||
keyfile_path = /path/to/client-key.pem
|
||
timeout = 10.0
|
||
retry_attempts = 3
|
||
retry_delay = 5
|
||
```
|
||
|
||
- `gmail_api`
|
||
- `credentials_file` - str: Path to file containing the
|
||
credentials, None to disable (Default: `None`)
|
||
- `token_file` - str: Path to save the token file
|
||
(Default: `.token`)
|
||
- `auth_mode` - str: Authentication mode, `installed_app` (default)
|
||
or `service_account`
|
||
- `service_account_user` - str: Delegated mailbox user for Gmail
|
||
service account auth (required for domain-wide delegation). Also
|
||
accepted as `delegated_user` for backward compatibility.
|
||
|
||
:::{note}
|
||
credentials_file and token_file can be got with [quickstart](https://developers.google.com/gmail/api/quickstart/python).Please change the scope to `https://www.googleapis.com/auth/gmail.modify`.
|
||
:::
|
||
:::{note}
|
||
When `auth_mode = service_account`, `credentials_file` must point to a
|
||
Google service account key JSON file, and `token_file` is not used.
|
||
:::
|
||
- `include_spam_trash` - bool: Include messages in Spam and
|
||
Trash when searching reports (Default: `False`)
|
||
- `scopes` - str: Comma separated list of scopes to use when
|
||
acquiring credentials
|
||
(Default: `https://www.googleapis.com/auth/gmail.modify`)
|
||
- `oauth2_port` - int: The TCP port for the local server to
|
||
listen on for the OAuth2 response (Default: `8080`)
|
||
- `paginate_messages` - bool: When `True`, fetch all applicable Gmail messages.
|
||
When `False`, only fetch up to 100 new messages per run (Default: `True`)
|
||
- `log_analytics`
|
||
- `client_id` - str: The app registration's client ID
|
||
- `client_secret` - str: The app registration's client secret
|
||
- `tenant_id` - str: The tenant id where the app registration resides
|
||
- `dce` - str: The Data Collection Endpoint (DCE). Example: `https://{DCE-NAME}.{REGION}.ingest.monitor.azure.com`.
|
||
- `dcr_immutable_id` - str: The immutable ID of the Data Collection Rule (DCR)
|
||
- `dcr_aggregate_stream` - str: The stream name for aggregate reports in the DCR
|
||
- `dcr_failure_stream` - str: The stream name for the failure reports in the DCR
|
||
- `dcr_smtp_tls_stream` - str: The stream name for the SMTP TLS reports in the DCR
|
||
|
||
:::{note}
|
||
Information regarding the setup of the Data Collection Rule can be found [in the Azure documentation](https://learn.microsoft.com/en-us/azure/azure-monitor/logs/tutorial-logs-ingestion-portal).
|
||
:::
|
||
- `gelf`
|
||
- `host` - str: The GELF server name or IP address
|
||
- `port` - int: The port to use
|
||
- `mode` - str: The GELF transport type to use. Valid modes: `tcp`, `udp`, `tls`
|
||
|
||
- `maildir`
|
||
- `maildir_path` - str: Full path for mailbox maildir location (Default: `INBOX`)
|
||
- `maildir_create` - bool: Create maildir if not present (Default: False)
|
||
|
||
- `webhook` - Post the individual reports to a webhook url with the report as the JSON body
|
||
- `aggregate_url` - str: URL of the webhook which should receive the aggregate reports
|
||
- `failure_url` - str: URL of the webhook which should receive the failure reports
|
||
- `smtp_tls_url` - str: URL of the webhook which should receive the smtp_tls reports
|
||
- `timeout` - int: Interval in which the webhook call should timeout
|
||
|
||
:::{warning}
|
||
It is **strongly recommended** to **not** use the `nameservers`
|
||
setting. By default, `parsedmarc` uses
|
||
[Cloudflare's public resolvers], which are much faster and more
|
||
reliable than Google, Cisco OpenDNS, or even most local resolvers.
|
||
|
||
The `nameservers` option should only be used if your network
|
||
blocks DNS requests to outside resolvers.
|
||
:::
|
||
|
||
:::{note}
|
||
`save_aggregate` and `save_failure` are separate options
|
||
because you may not want to save failure reports
|
||
(formerly known as forensic reports) to your Elasticsearch instance,
|
||
particularly if you are in a highly-regulated industry that
|
||
handles sensitive data, such as healthcare or finance. If your
|
||
legitimate outgoing email fails DMARC, it is possible
|
||
that email may appear later in a failure report.
|
||
|
||
Failure reports contain the original headers of an email that
|
||
failed a DMARC check, and sometimes may also include the
|
||
full message body, depending on the policy of the reporting
|
||
organization.
|
||
|
||
Most reporting organizations do not send failure reports of any
|
||
kind for privacy reasons. While aggregate DMARC reports are sent
|
||
at least daily, it is normal to receive very few failure reports.
|
||
|
||
An alternative approach is to still collect failure/ruf
|
||
reports in your DMARC inbox, but run `parsedmarc` with
|
||
```save_failure = True``` manually on a separate IMAP folder (using
|
||
the ```reports_folder``` option), after you have manually moved
|
||
known samples you want to save to that folder
|
||
(e.g. malicious samples and non-sensitive legitimate samples).
|
||
:::
|
||
|
||
:::{warning}
|
||
Elasticsearch 8 change limits policy for shards, restricting by
|
||
default to 1000. parsedmarc use a shard per analyzed day. If you
|
||
have more than ~3 years of data, you will need to update this
|
||
limit.
|
||
Check current usage (from Management -> Dev Tools -> Console):
|
||
|
||
```text
|
||
GET /_cluster/health?pretty
|
||
{
|
||
...
|
||
"active_primary_shards": 932,
|
||
"active_shards": 932,
|
||
...
|
||
}
|
||
```
|
||
|
||
Update the limit to 2k per example:
|
||
|
||
```text
|
||
PUT _cluster/settings
|
||
{
|
||
"persistent" : {
|
||
"cluster.max_shards_per_node" : 2000
|
||
}
|
||
}
|
||
```
|
||
|
||
Increasing this value increases resource usage.
|
||
:::
|
||
|
||
## Environment variable configuration
|
||
|
||
Any configuration option can be set via environment variables using the
|
||
naming convention `PARSEDMARC_{SECTION}_{KEY}` (uppercase). This is
|
||
especially useful for Docker deployments where file permissions make it
|
||
difficult to use config files for secrets.
|
||
|
||
**Priority order:** CLI arguments > environment variables > config file > defaults
|
||
|
||
### Examples
|
||
|
||
```bash
|
||
# Set IMAP credentials via env vars
|
||
export PARSEDMARC_IMAP_HOST=imap.example.com
|
||
export PARSEDMARC_IMAP_USER=dmarc@example.com
|
||
export PARSEDMARC_IMAP_PASSWORD=secret
|
||
|
||
# Elasticsearch
|
||
export PARSEDMARC_ELASTICSEARCH_HOSTS=http://localhost:9200
|
||
export PARSEDMARC_ELASTICSEARCH_SSL=false
|
||
|
||
# Splunk HEC (note: section name splunk_hec becomes SPLUNK_HEC)
|
||
export PARSEDMARC_SPLUNK_HEC_URL=https://splunk.example.com
|
||
export PARSEDMARC_SPLUNK_HEC_TOKEN=my-hec-token
|
||
export PARSEDMARC_SPLUNK_HEC_INDEX=email
|
||
|
||
# General settings
|
||
export PARSEDMARC_GENERAL_SAVE_AGGREGATE=true
|
||
export PARSEDMARC_GENERAL_DEBUG=true
|
||
```
|
||
|
||
### Specifying the config file via environment variable
|
||
|
||
```bash
|
||
export PARSEDMARC_CONFIG_FILE=/etc/parsedmarc.ini
|
||
parsedmarc
|
||
```
|
||
|
||
### Running without a config file (env-only mode)
|
||
|
||
When no config file is given (neither `-c` flag nor `PARSEDMARC_CONFIG_FILE`),
|
||
parsedmarc will still pick up any `PARSEDMARC_*` environment variables. This
|
||
enables fully file-less deployments:
|
||
|
||
```bash
|
||
export PARSEDMARC_GENERAL_SAVE_AGGREGATE=true
|
||
export PARSEDMARC_GENERAL_OFFLINE=true
|
||
export PARSEDMARC_ELASTICSEARCH_HOSTS=http://elasticsearch:9200
|
||
parsedmarc /path/to/reports/*
|
||
```
|
||
|
||
### Docker Compose example
|
||
|
||
```yaml
|
||
services:
|
||
parsedmarc:
|
||
image: parsedmarc:latest
|
||
environment:
|
||
PARSEDMARC_IMAP_HOST: imap.example.com
|
||
PARSEDMARC_IMAP_USER: dmarc@example.com
|
||
PARSEDMARC_IMAP_PASSWORD: ${IMAP_PASSWORD}
|
||
PARSEDMARC_MAILBOX_WATCH: "true"
|
||
PARSEDMARC_ELASTICSEARCH_HOSTS: http://elasticsearch:9200
|
||
PARSEDMARC_GENERAL_SAVE_AGGREGATE: "true"
|
||
PARSEDMARC_GENERAL_SAVE_FAILURE: "true"
|
||
```
|
||
|
||
### Docker secrets (`_FILE` suffix)
|
||
|
||
Any `PARSEDMARC_{SECTION}_{KEY}` environment variable can also be supplied
|
||
via a file by appending `_FILE` to its name. The file's contents (with any
|
||
trailing CR/LF characters stripped) are used as the value. This is the
|
||
same convention used by the official Postgres, MariaDB, and Redis container
|
||
images, and is designed to plug straight into Docker / Docker Compose /
|
||
Kubernetes secrets so credentials never appear in plain `environment:`
|
||
blocks (where they would be readable via `docker inspect`, container logs,
|
||
and `/proc/<pid>/environ`).
|
||
|
||
The bare `DEBUG` / `PARSEDMARC_DEBUG` aliases and `PARSEDMARC_CONFIG_FILE`
|
||
do not have a `_FILE` form; only `PARSEDMARC_{SECTION}_{KEY}` vars resolved
|
||
to a known config section are eligible.
|
||
|
||
If both the direct env var and the `_FILE` variant are set, the `_FILE`
|
||
variant wins. If the file does not exist or is unreadable, parsedmarc
|
||
exits with a configuration error rather than silently falling back to an
|
||
empty value.
|
||
|
||
```yaml
|
||
secrets:
|
||
imap_password:
|
||
file: ./secrets/imap_password.txt
|
||
|
||
services:
|
||
parsedmarc:
|
||
image: parsedmarc:latest
|
||
secrets:
|
||
- imap_password
|
||
environment:
|
||
PARSEDMARC_IMAP_HOST: imap.example.com
|
||
PARSEDMARC_IMAP_USER: dmarc@example.com
|
||
PARSEDMARC_IMAP_PASSWORD_FILE: /run/secrets/imap_password
|
||
```
|
||
|
||
Note that a small set of config keys whose own names already end in
|
||
`_file` (`[general] log_file`, `[msgraph] token_file`,
|
||
`[gmail_api] credentials_file`, `[gmail_api] token_file`) keep their
|
||
pre-existing meaning when set via `PARSEDMARC_..._FILE` — that env var is
|
||
the path itself, not a wrapper around a file containing the path. To pass
|
||
*those* paths via a Docker secret, double up the suffix
|
||
(`PARSEDMARC_GMAIL_API_CREDENTIALS_FILE_FILE`); the inner contents are
|
||
then read and stored as the `credentials_file` value.
|
||
|
||
### Section name mapping
|
||
|
||
For sections with underscores in the name, the full section name is used:
|
||
|
||
| Section | Env var prefix |
|
||
| --- | --- |
|
||
| `general` | `PARSEDMARC_GENERAL_` |
|
||
| `mailbox` | `PARSEDMARC_MAILBOX_` |
|
||
| `imap` | `PARSEDMARC_IMAP_` |
|
||
| `msgraph` | `PARSEDMARC_MSGRAPH_` |
|
||
| `elasticsearch` | `PARSEDMARC_ELASTICSEARCH_` |
|
||
| `opensearch` | `PARSEDMARC_OPENSEARCH_` |
|
||
| `splunk_hec` | `PARSEDMARC_SPLUNK_HEC_` |
|
||
| `kafka` | `PARSEDMARC_KAFKA_` |
|
||
| `smtp` | `PARSEDMARC_SMTP_` |
|
||
| `s3` | `PARSEDMARC_S3_` |
|
||
| `syslog` | `PARSEDMARC_SYSLOG_` |
|
||
| `gmail_api` | `PARSEDMARC_GMAIL_API_` |
|
||
| `maildir` | `PARSEDMARC_MAILDIR_` |
|
||
| `log_analytics` | `PARSEDMARC_LOG_ANALYTICS_` |
|
||
| `gelf` | `PARSEDMARC_GELF_` |
|
||
| `webhook` | `PARSEDMARC_WEBHOOK_` |
|
||
|
||
## Using parsedmarc as a library
|
||
|
||
`parsedmarc` is also importable as a regular Python package, not just a CLI
|
||
tool. The main entry points — `parse_report_file()`, `parse_aggregate_report_xml()`,
|
||
`parse_aggregate_report_file()`, `parse_failure_report()`, `parse_report_email()`,
|
||
`get_dmarc_reports_from_mbox()`, `get_dmarc_reports_from_mailbox()`, and
|
||
`watch_inbox()` — are all importable
|
||
directly from the `parsedmarc` package. See the [API reference](api.md) for
|
||
the full set of modules and members.
|
||
|
||
Each of these functions accepts either individual option keyword arguments
|
||
(`offline`, `nameservers`, `dns_timeout`, etc.) or a single `config=` keyword
|
||
argument carrying a `ParserConfig` instance:
|
||
|
||
```python
|
||
from parsedmarc import ParserConfig, parse_report_file, get_dmarc_reports_from_mailbox
|
||
from parsedmarc.mail import IMAPConnection
|
||
|
||
config = ParserConfig(
|
||
offline=False,
|
||
nameservers=["1.1.1.1", "1.0.0.1"],
|
||
dns_timeout=5.0,
|
||
)
|
||
|
||
report = parse_report_file("aggregate_report.xml.gz", config=config)
|
||
|
||
connection = IMAPConnection(
|
||
host="imap.example.com", user="dmarc@example.com", password="..."
|
||
)
|
||
results = get_dmarc_reports_from_mailbox(connection, config=config)
|
||
```
|
||
|
||
A few things to keep in mind:
|
||
|
||
- When `config=` is passed, the individual option keyword arguments are
|
||
ignored in favor of the values carried on the `ParserConfig` instance.
|
||
- Each explicitly constructed `ParserConfig` owns its own isolated caches
|
||
(IP address info, seen aggregate report IDs, and the reverse DNS map).
|
||
Omitting `config=` falls back to the process-wide caches shared by every
|
||
call that doesn't pass one.
|
||
- `keep_alive` and `n_procs` are not part of `ParserConfig` — they control
|
||
process/worker orchestration rather than parsing or enrichment behavior,
|
||
so they are always passed as separate keyword arguments.
|
||
|
||
## Performance tuning
|
||
|
||
For large mailbox imports or backfills, parsedmarc can consume a noticeable amount
|
||
of memory, especially when it runs on the same host as Elasticsearch or
|
||
OpenSearch. The following settings can reduce peak memory usage and make long
|
||
imports more predictable:
|
||
|
||
- Reduce `mailbox.batch_size` to smaller values such as `100-500` instead of
|
||
processing a very large message set at once. Smaller batches trade throughput
|
||
for lower peak memory use and less sink pressure.
|
||
- `n_procs` now parallelizes parsing for mailbox and mbox runs too, not just
|
||
report files passed directly as CLI arguments. It pays off most when a run
|
||
is bound by DNS/GeoIP enrichment rather than fetching or output. The
|
||
trade-off is memory and DNS load: at most roughly `2 * n_procs` messages
|
||
are held in flight at once, each worker process keeps its own DNS/GeoIP
|
||
cache, and DNS query volume can multiply by up to `n_procs`.
|
||
- Use `mailbox.since` to process reports in smaller time windows such as `1d`,
|
||
`7d`, or another interval that fits the backlog. This makes it easier to catch
|
||
up incrementally instead of loading an entire mailbox history in one run.
|
||
- Set `strip_attachment_payloads = True` when failure reports contain large
|
||
attachments and you do not need to retain the raw payloads in the parsed
|
||
output.
|
||
- Prefer running parsedmarc separately from Elasticsearch or OpenSearch, or
|
||
reserve enough RAM for both services if they must share a host.
|
||
- For very large imports, prefer incremental supervised runs, such as a
|
||
scheduler or systemd service, over infrequent massive backfills.
|
||
|
||
These are operational tuning recommendations rather than hard requirements, but
|
||
they are often enough to avoid memory pressure and reduce failures during
|
||
high-volume mailbox processing.
|
||
|
||
## Multi-tenant support
|
||
|
||
Starting in `8.19.0`, ParseDMARC provides multi-tenant support by placing data into separate OpenSearch or Elasticsearch index prefixes. To set this up, create a YAML file that is formatted where each key is a tenant name, and the value is a list of domains related to that tenant, not including subdomains, like this:
|
||
|
||
```yaml
|
||
example:
|
||
- example.com
|
||
- example.net
|
||
- example.org
|
||
|
||
whalensolutions:
|
||
- whalensolutions.com
|
||
```
|
||
|
||
Save it to disk where the user running ParseDMARC can read it, then set `index_prefix_domain_map` to that filepath in the `[general]` section of the ParseDMARC configuration file and do not set an `index_prefix` option in the `[elasticsearch]` or `[opensearch]` sections.
|
||
|
||
When configured correctly, if ParseDMARC finds that a report is related to a domain in the mapping, the report will be saved in an index name that has the tenant name prefixed to it with a trailing underscore. Then, you can use the security features of Opensearch or the ELK stack to only grant users access to the indexes that they need.
|
||
|
||
:::{note}
|
||
A domain cannot be used in multiple tenant lists. Only the first prefix list that contains the matching domain is used.
|
||
:::
|
||
|
||
## Running parsedmarc as a systemd service
|
||
|
||
Use systemd to run `parsedmarc` as a service and process reports as
|
||
they arrive.
|
||
|
||
This assumes `parsedmarc` has been installed into
|
||
`/opt/parsedmarc/venv` under a `parsedmarc` system user, as described
|
||
in [Installing parsedmarc](installation.md#installing-parsedmarc).
|
||
|
||
Protect the `parsedmarc` configuration file from prying eyes
|
||
|
||
```bash
|
||
sudo chown root:parsedmarc /etc/parsedmarc.ini
|
||
sudo chmod u=rw,g=r,o= /etc/parsedmarc.ini
|
||
```
|
||
|
||
Create the service configuration file
|
||
|
||
```bash
|
||
sudo nano /etc/systemd/system/parsedmarc.service
|
||
```
|
||
|
||
```ini
|
||
[Unit]
|
||
Description=parsedmarc mailbox watcher
|
||
Documentation=https://domainaware.github.io/parsedmarc/
|
||
Wants=network-online.target
|
||
After=network.target network-online.target elasticsearch.service
|
||
|
||
[Service]
|
||
ExecStart=/opt/parsedmarc/venv/bin/parsedmarc -c /etc/parsedmarc.ini
|
||
ExecReload=/bin/kill -HUP $MAINPID
|
||
KillSignal=SIGTERM
|
||
TimeoutStopSec=60
|
||
User=parsedmarc
|
||
Group=parsedmarc
|
||
Restart=always
|
||
RestartSec=5m
|
||
|
||
[Install]
|
||
WantedBy=multi-user.target
|
||
```
|
||
|
||
Then, enable the service
|
||
|
||
```bash
|
||
sudo systemctl daemon-reload
|
||
sudo systemctl enable parsedmarc.service
|
||
sudo service parsedmarc restart
|
||
```
|
||
|
||
:::{note}
|
||
You must also run the above commands whenever you edit
|
||
`parsedmarc.service`.
|
||
:::
|
||
|
||
:::{warning}
|
||
Always restart the service every time you upgrade to a new version of
|
||
`parsedmarc`:
|
||
|
||
```bash
|
||
sudo service parsedmarc restart
|
||
```
|
||
|
||
:::
|
||
|
||
:::{note}
|
||
On `systemctl stop`/`restart` (or Ctrl-C) `parsedmarc` finishes the
|
||
current batch, flushes its outputs, and exits cleanly. Shutdown is
|
||
observed at batch boundaries, so the worst-case delay is roughly
|
||
`mailbox_check_timeout` (default 30s) plus the batch's processing and
|
||
flush time. Keep `TimeoutStopSec` comfortably above
|
||
`mailbox_check_timeout` (≈2×, and raise both together) or systemd will
|
||
`SIGKILL` mid-batch. In the foreground, a second Ctrl-C force-quits
|
||
immediately, skipping the output flush.
|
||
:::
|
||
|
||
### Reloading configuration without restarting
|
||
|
||
When running in watch mode, `parsedmarc` supports reloading its
|
||
configuration file without restarting the service or interrupting
|
||
report processing that is already in progress. Send a `SIGHUP` signal
|
||
to the process, or use `systemctl reload` if the unit file includes
|
||
the `ExecReload` line shown above:
|
||
|
||
```bash
|
||
sudo systemctl reload parsedmarc
|
||
```
|
||
|
||
The reload takes effect after the current batch of reports finishes
|
||
processing and all output operations (Elasticsearch, Kafka, S3, etc.)
|
||
for that batch have completed. The following settings are reloaded:
|
||
|
||
- All output destinations (Elasticsearch, OpenSearch, Kafka, S3,
|
||
Splunk, syslog, GELF, webhooks, Log Analytics)
|
||
- Multi-tenant index prefix domain map (`index_prefix_domain_map` —
|
||
the referenced YAML file is re-read on reload)
|
||
- DNS and GeoIP settings (`nameservers`, `dns_timeout`, `ip_db_path`,
|
||
`ip_db_url`, `offline`, etc.)
|
||
- Processing flags (`strip_attachment_payloads`, `batch_size`,
|
||
`check_timeout`, etc.)
|
||
- Log level (`debug`, `verbose`, `warnings`, `silent`)
|
||
|
||
Mailbox connection settings (IMAP host/credentials, Microsoft Graph,
|
||
Gmail API, Maildir path) are **not** reloaded — changing those still
|
||
requires a full restart.
|
||
|
||
On a **successful** reload, existing output client connections are
|
||
closed and new ones are created from the updated configuration. The
|
||
service then resumes watching with the new settings.
|
||
|
||
If the new configuration file contains errors (missing required
|
||
settings, unreachable output destinations, etc.), the **entire reload
|
||
is aborted** — no output clients are replaced and the previous
|
||
configuration remains fully active. This means a typo in one section
|
||
will not take down an otherwise working setup. Check the logs for
|
||
details:
|
||
|
||
```bash
|
||
journalctl -u parsedmarc.service -r
|
||
```
|
||
|
||
To check the status of the service, run:
|
||
|
||
```bash
|
||
service parsedmarc status
|
||
```
|
||
|
||
:::{note}
|
||
In the event of a crash, systemd will restart the service after 10
|
||
minutes, but the `service parsedmarc status` command will only show
|
||
the logs for the current process. To view the logs for previous runs
|
||
as well as the current process (newest to oldest), run:
|
||
|
||
```bash
|
||
journalctl -u parsedmarc.service -r
|
||
```
|
||
|
||
:::
|
||
|
||
[cloudflare's public resolvers]: https://1.1.1.1/
|
||
[url encoded]: https://en.wikipedia.org/wiki/Percent-encoding#Percent-encoding_reserved_characters
|
||
[ipinfo lite rest api]: https://ipinfo.io/developers/lite-api
|