From 4ecbdb334ed06cc7bedd34c7141844c1ad5f829c Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sat, 2 May 2026 18:46:24 +0200 Subject: [PATCH] Updated readme --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index e435cec..852fc33 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # Lightweight Extensible Message Format -*This repository is [a public mirror](./MIRROR.md). All development is happening elsewhere.* - -LXMF is a simple and flexible messaging format and delivery protocol that allows a wide variety of implementations, while using as little bandwidth as possible. It is built on top of [Reticulum](https://reticulum.network) and offers zero-conf message routing, end-to-end encryption and Forward Secrecy, and can be transported over any kind of medium that Reticulum supports. +LXMF is a simple and flexible messaging format and delivery protocol that allows a wide variety of implementations, while using as little bandwidth as possible. It is built on top of [Reticulum](a8d24177d946de4f1f0a0fe1af9a1338:/page/repo.mu`g=reticulum|r=reticulum) and offers zero-conf message routing, end-to-end encryption and Forward Secrecy, and can be transported over any kind of medium that Reticulum supports. LXMF is efficient enough that it can deliver messages over extremely low-bandwidth systems such as packet radio or LoRa. Encrypted LXMF messages can also be encoded as QR-codes or text-based URIs, allowing completely analog *paper message* transport. @@ -87,7 +85,6 @@ lxm_router = LXMF.LXMRouter() message = LXMF.LXMessage(destination, source, "This is a short, simple message.") lxm_router.handle_outbound(message) - ``` The LXM Router then handles the heavy lifting, such as message packing, encryption, delivery confirmation, path lookup, routing, retries and failure notifications.