Ping Identity

mail_add_rule

Add an allow or block rule. Use type ALLOW or BLOCK, scope RECEIVE/SEND/REPLY, and value as email or *@domain.com.

Remote loomal/identity

Remote (network-hosted)

Other tools also called mail_add_rule? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "type": {
      "enum": [
        "ALLOW",
        "BLOCK"
      ],
      "type": "string",
      "description": "Rule type"
    },
    "scope": {
      "enum": [
        "RECEIVE",
        "SEND",
        "REPLY"
      ],
      "type": "string",
      "description": "Rule scope"
    },
    "value": {
      "type": "string",
      "maxLength": 320,
      "description": "Email address or *@domain.com pattern"
    }
  }
}