# `no_reply`: the address is a no-reply sender

noreply, donotreply, mailer-daemon and their kin are addresses mail is sent from and never read at; this weight is added on top of the role weight.

- Weight: +20
- Dataset: role-types
- Read from: `role_type`
- Verdict reasons it comes with: `no_reply`

The shape is recognised by pattern — as the whole username or as a delimited token, so noreply-billing counts — even when the open role list lacks the spelling, and it forces role true with role_type no_reply. A role address scores 30; a no-reply one 50.

It reads from role_type and comes with the no_reply verdict reason, placed before role.

**What to do.** Never mail it: replies are discarded by design. The default sending policy blocks on it.

```json
{
    "email": "no-reply@acme.com",
    "deliverable": "risky",
    "reason": "no_reply",
    "role": true,
    "role_type": "no_reply",
    "risk_score": 50,
    "risk_signals": [
        {
            "signal": "no_reply",
            "weight": 20,
            "dataset": "role-types"
        }
    ]
}
```

Reference: https://spaw.co/docs/signals/no_reply
