component · 0x0050 / 0x0051
Service Zone.
The Service Zone is the centralized infrastructure registry for a POZ record. All server endpoints, ports, encryption methods, and CA keys live here, exactly once. Other zones reference services by hash, not by hostname — so changing a server's address doesn't require updating every zone that uses it.
service entries
Each service has a name (optional), a type, and a pool of hosts. The service hash is computed from the entry's content and is the handle other zones use to refer to it.
service types
| Type | Use |
|---|---|
POZ_QUERY | Query servers (port 7074 / 7075) |
POZ_SUBMIT | Authoritative submit servers (port 7076) |
HTTPS | Web endpoint |
MAIL | Mail servers, referenced by inbox entries |
FEED | Feed post servers |
REVOCATION | Real-time key revocation lookup |
CUSTOM | Anything else |
pool entries
Each host in a pool specifies hostname, port, transport (TCP/UDP),
encryption (NONE / TLS / NOISE_NK), the per-server public key
(optional), the CA key index, and the standard MX-style
priority and weight for failover and load
balancing.
POZ-as-CA
The ca_key_index field designates which POZ key signed
the server's TLS certificate. A POZ-aware client can verify that a
server's cert chains to a key in your record — not to a public CA.
This eliminates the dependency on DigiCert, Let's Encrypt, and the
rest of the public PKI for clients that have already loaded your
POZ record, while staying TLS-compatible for everyone else (load
balancers, firewalls, CDNs).
The same TLS certificate that satisfies a generic browser also satisfies a POZ client — the POZ client just verifies an additional, stronger property.
cross-zone references
- Email Zone: each inbox references a MAIL service by hash.
- Feed Zone: each feed anchor references a FEED service by hash.
- Auth Zone:
revocation_service_hashreferences a REVOCATION service.
When infrastructure changes, the service hash changes, which means every zone referencing it must be updated to acknowledge the new configuration. A provider can't quietly swap your servers; if they do, the chain breaks.
see also
- Network protocol — what POZ_QUERY and POZ_SUBMIT services actually speak.
- poztter.net topology — the live network treats Service Zone entries as ground truth.
- RFC POZ-CORE §14