Skip to content

2930 - Email Routing

Email routing and filtering rules. This is an example of a MAML document.

maml
{
  domain: "well-worn-march.org"
  inbound: {
    mx_records: [
      "mx1.well-worn-march.org"
      "mx2.well-worn-march.org"
    ]
    spam_filter: {
      enabled: true
      threshold: 5
      action: "reject"
    }

    dkim: {
      enabled: true
      selector: "default"
      key_size: 2048
    }
  }

  outbound: {
    relay: "smtp.well-worn-march.org"
    port: 25
    tls: true
    rate_limit: {
      per_minute: 498
      per_hour: 2633
    }
  }
}

See Also