MakerFLOSS/docs/møder/2026-05-11_messaging-presentation.md
sjat 7503eb409e fix: prevent table overflow across messaging and SoMe decks
Messaging deck:
- Slide 5: remove redundant E2EE column (all apps have it), add italic note
- Resources: shorten meshtastic link text, apply .dense class
- Add .dense CSS class (0.5em) for slides that need extra reduction

SoMe deck:
- Apply .dense class to The Categories and Messaging slides (7 rows each)
- Add .dense CSS class definition

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-10 19:31:18 +02:00

234 lines
7.8 KiB
Markdown

---
marp: true
theme: gaia
class: invert
paginate: true
---
<style>
table { font-size: 0.65em; }
th, td { padding: 0.25em 0.6em; }
section.dense table { font-size: 0.5em; }
section.dense th, section.dense td { padding: 0.2em 0.5em; }
</style>
# Messaging Without Big Tech
### Free & Open Alternatives to WhatsApp and Messenger
MakerFLOSS · May 2026
---
## Why Are We Here?
Most people use WhatsApp, Messenger, or iMessage.
- **WhatsApp** — owned by Meta; metadata harvested
- **Messenger** — no E2EE by default in groups; ad tracking
- **Telegram** — _not_ E2EE by default; closed server
- **iMessage** — Apple lock-in; no Android or Linux
These apps are _convenient_ — but the cost is your data.
---
## Wish-list
| Property | Why it matters |
| ------------------------- | ------------------------------------------- |
| End-to-end encryption | Only sender and recipient can read messages |
| Open source | Anyone can audit the code |
| Self-hostable | You control the server and the data |
| No phone number required | Less identity linkage |
| Cross-platform | Linux, Android, iOS, Windows |
| Federated / decentralized | No single point of failure or control |
---
## The Landscape at a Glance
_All apps below support end-to-end encryption._
| App | Open source | Self-host | No phone# | Federation |
| -------------------- | ----------- | --------- | --------- | ---------- |
| **Signal** | Partial | ✗ | ✗ | ✗ |
| **Matrix / Element** | ✓ | ✓ | ✓ | ✓ |
| **XMPP + OMEMO** | ✓ | ✓ | ✓ | ✓ |
| **Briar** | ✓ | N/A | ✓ | N/A |
| **Session** | ✓ | Partial | ✓ | Partial |
---
## Signal — The Gold Standard for E2EE
Non-profit Signal Foundation. The Signal Protocol powers WhatsApp, Google RCS, and Messenger secret chats.
**Pros**
- Simplest UX — works like a normal messaging app
- Audited, battle-tested cryptography; no ads, no tracking
**Cons**
- Phone number required — links identity to account
- Centralized — Signal's servers, Signal's rules
**Best for:** journalists, activists, everyday secure messaging
---
## Signal — Under the Hood
```mermaid
sequenceDiagram
participant A as Alice's phone
participant S as Signal Server
participant B as Bob's phone
A->>S: encrypted message
Note over S: sees: who, when, how often<br/>does NOT see: content
S->>B: encrypted message
Note over B: decrypts with private key
```
Metadata still matters — [Signal subpoena responses](https://signal.org/bigbrother/)
---
## Matrix — The Federated Open Standard
Matrix is a **protocol**, not an app — like email for real-time chat.
```mermaid
graph LR
EC[Element client] --> YH[your homeserver]
YH <-->|federation| OH[another homeserver]
FC[FluffyChat] --> OH
```
- **Servers**: Synapse (Python), Conduit (Rust), Dendrite (Go)
- **Clients**: Element, FluffyChat, Cinny, Fractal, Nheko
- **Bridges**: WhatsApp, Telegram, Signal, IRC, Discord…
---
## Matrix — Pros and Cons
**Pros**
- Fully open source, top to bottom
- Self-host your server — you own your data
- Federated — no single company controls the network
- Bridges consolidate all your chats in one place
**Cons**
- E2EE key management is clunky (cross-signing, key backup)
- Synapse is resource-hungry (~1 GB RAM)
- The UX of Element is still maturing
---
## Matrix — Why It's Interesting for MakerFLOSS
We could run `matrix.makerfloss.eu` on our existing VPS.
- Full control over our community chat
- Bridges to reach people still on WhatsApp or Messenger
- A playground for self-hosted infrastructure
- Federated — members can also use matrix.org or personal servers
- ~500 MB RAM with Conduit (lighter than Synapse)
---
## Matrix Bridges — Stay Connected During the Transition
A bridge relays messages between Matrix and another network — both ways.
| Bridge | Network | Notes |
| ------------------------- | ---------- | ------------------------------------------- |
| `mautrix-whatsapp` | WhatsApp | Puppeting — your real WA account |
| `mautrix-telegram` | Telegram | Puppeting — very stable |
| `mautrix-signal` | Signal | Fragile — Signal actively breaks 3rd-party |
| `meshtastic-matrix-relay` | Meshtastic | LoRa mesh ↔ Matrix — off-grid messaging |
**Catch:** Puppeting bridges hold your credentials. WhatsApp's ToS prohibits it — occasional bans occur.
---
## XMPP (Jabber)
The _original_ federated chat standard — 1999. Still alive and kicking.
- Extremely mature and lightweight
- E2EE via OMEMO
- Good clients: **Conversations** (Android), **Monal** (iOS/macOS), **Gajim** (desktop)
- Con: fragmented client quality; less beginner-friendly than Signal or Matrix
---
## Briar
Peer-to-peer messaging — _no server at all_.
- Works over Tor, local WiFi, or Bluetooth (offline!)
- Censorship-resistant by design
- Con: Android-first; no desktop client; both parties must be online to first connect
**For:** activists, disaster scenarios, high-censorship environments
---
## Participation — Let's Talk
**Round 1: Your current situation** _(2 min, pairs)_
- What messenger do you use most, and why?
- Is there anything about it that bothers you?
**Round 2: Barriers** _(group discussion)_
- What's the hardest part of switching or convincing others?
- "But all my friends are on WhatsApp" — how do you handle it?
---
## Participation — Try It Now
**Option A — Signal**
Install Signal, register with your phone number, message the person next to you.
**Option B — Matrix (web)**
Open [app.element.io](https://app.element.io), create an account on matrix.org, join `#makerfloss:matrix.org`.
**Option C — Discussion**
Should MakerFLOSS run a Matrix homeserver?
---
<!-- _class: invert dense -->
## Resources
| Resource | Link |
| ----------------------- | ------------------------------------------------------------------------------------------------------- |
| Signal | [signal.org](https://signal.org) |
| Element client | [element.io](https://element.io) |
| Matrix spec | [spec.matrix.org](https://spec.matrix.org) |
| Conduit server | [conduit.rs](https://conduit.rs) |
| Briar | [briarproject.org](https://briarproject.org) |
| Privacy Guides | [privacyguides.org/…/real-time-communication](https://www.privacyguides.org/en/real-time-communication) |
| meshtastic-matrix-relay | [github: geoffwhittington/meshtastic-matrix-relay](https://github.com/geoffwhittington/meshtastic-matrix-relay) |
---
## Summary
- **Signal**: easiest switch, best UX, E2EE by default — but centralized, requires phone number
- **Matrix**: most aligned with FLOSS values, self-hostable, federated — but more complex
- **XMPP**: the old guard, still solid for the technically inclined
- **Briar**: for extreme scenarios — no infrastructure needed
**The best alternative is the one people will actually use.**
---
# Questions?
_Slides made with [Marp](https://marp.app) — open source markdown slide tool_