Skip to content

mxr senders

Generated from mxr senders --help. Edit the clap definitions in crates/daemon/src/cli/ and re-run npm run build in site/ to regenerate.

List top inbound senders by message volume.

--since restricts the count window to recent messages so the ranking reflects current noise, not all-time history. Accepts shorthand durations like 7d / 4w / 12h, or an RFC-3339 timestamp (2026-02-01T00:00:00Z).

mxr senders [OPTIONS]
FlagDescription
--top <TOP>[default: 20]
--account <ACCOUNT>
--since <SINCE>Only count messages received within this window. Defaults to unbounded (all-time)
--format <FORMAT>[possible values: table, json, jsonl, csv, ids]
-h, --helpPrint help (see a summary with ‘-h’)

List top inbound senders by message volume. Use --since to restrict to a recent window (e.g. --since 7d for the last week, or an RFC-3339 timestamp). Pipe --format ids into mxr unsubscribe to clean house in two commands.

Terminal window
mxr senders --top 20
mxr senders --top 10 --since 7d
mxr senders --since 2026-01-01T00:00:00Z --format json | jq '.[] | {who:.sender_email, count:.message_count}'