Definition
Store and forward is a messaging pattern in which a well-resourced relay node holds onto traffic destined for peers that are currently unreachable, then delivers it later when those peers reappear. In an intermittently connected mesh — where nodes sleep to save battery, move out of range, or lose power — this decouples sending from receiving so a message written now can still arrive hours later.
How Meshtastic implements it
Meshtastic ships a Store & Forward module intended to run on an always-on, mains-powered node with onboard PSRAM (such as a T-Beam or T3S3). The module quietly records messages it overhears. When a node comes back into range, its user can request the missed history — on Android by direct-messaging the server the text "SF", and on Apple devices through a retrieve-messages option — and the server replays the stored packets. By default the module dedicates about two-thirds of available PSRAM to this cache, holding on the order of ten thousand records.
Why it strengthens sovereignty
Store and forward turns a fragile, range-limited mesh into something closer to reliable asynchronous messaging without ever touching the internet or a cellular carrier. A single solar-powered relay on a hilltop can act as the community's mailbox, buffering traffic across coverage gaps and power outages. The feature is restricted to private channels rather than the public mesh, which suits the closed, trusted networks sovereign groups tend to build.
Store and forward complements managed-flood mesh routing by serving the nodes that were offline during a broadcast, extending the practical reach of a LoRa network.
In Simple Terms
Store and forward is a messaging pattern in which a well-resourced relay node holds onto traffic destined for peers that are currently unreachable, then delivers…
