... | ... | @@ -26,9 +26,9 @@ graph LR |
|
|
|
|
|
Message delivery could be delayed for an arbitrary time (or even indefinitely)
|
|
|
until both Bob and Alice are online at the same time.
|
|
|
The repeater solves this problem by providing
|
|
|
mailbox-like message buffer where contacts can leave messages for the owner
|
|
|
of the repeater and which is connected to a stable internet connection
|
|
|
The Mailbox solves this problem by providing
|
|
|
a message buffer where contacts can leave messages for the owner
|
|
|
of the Mailbox and which is connected to a stable internet connection
|
|
|
(e.g. the wifi at home, cable internet) and a power source.
|
|
|
|
|
|
|
... | ... | @@ -38,14 +38,14 @@ graph LR |
|
|
A1[Alice]
|
|
|
B[Bob]
|
|
|
B1[Bob]
|
|
|
RA["Repeater (always online)"]
|
|
|
RA["Mailbox (always online)"]
|
|
|
style B fill:#8db600
|
|
|
style RA fill:#8db600
|
|
|
style A1 fill:#8db600
|
|
|
subgraph Alice offline
|
|
|
B-. can't send message .-> A
|
|
|
end
|
|
|
subgraph Alices' Repeater
|
|
|
subgraph Alices' Mailbox
|
|
|
B-- send message --> RA
|
|
|
end
|
|
|
subgraph Alice online
|
... | ... | @@ -56,7 +56,7 @@ graph LR |
|
|
|
|
|
## Hardware
|
|
|
|
|
|
We want the repeater to be as easy to deploy as possible. The first version
|
|
|
We want the Mailbox to be as easy to deploy as possible. The first version
|
|
|
will come as Android application since it will be easy to setup and besides a
|
|
|
spare phone no special hardware is required. Once this is done support for
|
|
|
any hardware supporting Java (e.g. unix server, raspberry pi) will be added.
|
... | ... | @@ -65,15 +65,15 @@ any hardware supporting Java (e.g. unix server, raspberry pi) will be added. |
|
|
|
|
|
### Core features
|
|
|
|
|
|
* Allow contacts to store messages for the owner of the repeater
|
|
|
* Allow contacts to store messages for the owner of the Mailbox
|
|
|
* Allow the owner to store messages for her contacts. Contacts can pick them up
|
|
|
when syncing with the repeater.
|
|
|
* Owner and contacts connect to the repeater via Tor.
|
|
|
when syncing with the Mailbox.
|
|
|
* Owner and contacts connect to the Mailbox via Tor.
|
|
|
|
|
|
### Extended features/components
|
|
|
|
|
|
* The repeater can sync group messages (from groups the owner is part of) with
|
|
|
* The Mailbox can sync group messages (from groups the owner is part of) with
|
|
|
other group members (increases message circulation)
|
|
|
* Contacts and the owner can connect to the repeater via other transports (Bluetooth, Wifi-Direct, Lan)
|
|
|
* Contacts and the owner can connect to the Mailbox via other transports (Bluetooth, Wifi-Direct, Lan)
|
|
|
* Push-like message notification for the owner to decrease battery drain
|
|
|
|