Private, end-to-end encrypted messaging whose messages ride the chain and whose bodies ride a courier. This host runs two things for people who do not want to run a server: a hosted mailbox and a blind relay hop. Every key stays on your device — this box holds ciphertext that expires, never a plaintext message and never an identity key.
| what | address | what it does |
|---|---|---|
| mailbox | https://mail.sporem3.io/u/<user> |
holds TTL-bound encrypted bodies, serves single-use prekeys, lists pointers. Bearer-token per user; no token, no read. |
| relay hop | https://relay.sporem3.io/relay/<cid> |
accepts an opaque body bound for a mailbox (X-Relay-Dest), holds it,
forwards it. Your mailbox then sees the relay's IP, not yours. |
| DERO node | https://rpc.mycoid.net |
the chain node the pointers ride (shared, rate-limited, read-safe). |
# send (a body through the relay, a pointer on-chain) printf 'hi\n' | spore msg send -chain dero -rpc https://rpc.mycoid.net/json_rpc \ -to <friend-dero1...> -identity ~/mb/identity.key \ -bundle ./friend-bundle.json -pinned-sig FRIEND_SIGNING_KEY_HEX \ -store https://mail.sporem3.io/u/<you> -store-token <your-token> \ -state-dir ~/mb/state -state-key ~/mb/state.key -ringsize 16 # receive + decrypt locally (the box never sees plaintext) spore msg recv-e2 -chain dero -rpc https://rpc.mycoid.net/json_rpc \ -store https://mail.sporem3.io/u/<you> -store-token <your-token> \ -identity ~/mb/identity.key -spk ~/mb/spk.key -opk-pool ~/mb/opk-pool.json \ -state-dir ~/mb/state -state-key ~/mb/state.key
spore msg recv-e2 on your own machine.-privacy),
but timing and volume remain visible.spore mailbox run is the same software, with no third party in the loop.| self-host | hosted here | |
|---|---|---|
| cost | a box you already own | a small monthly fee — cheaper than a VPS you have to babysit |
| metadata exposure | none | timing/volume visible to this operator |
| keys | yours | yours (this host never receives them) |
| always-on | your problem | this box, monitored |
The software is BSD-3 and free forever. What is paid is the convenience of someone else keeping the courier awake. Both tiers run the identical binary.