the website for homebrewserver.club pelican repo / theme and blog posts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
4.8 KiB

7 years ago
Title: Beginners guide to XMPP-speak
Date: 2017-2-28
Category: xmpp
Tags: xmpp, lexicon, terminology
Slug: beginners-guide-to-xmpp-speak
Summary: placeholder
status: draft
<a name='xmpp'></a>
<span style="color:#fe4a49">XMPP</span> -
Extensible Messaging and Presence Protocol
<a name='jabber'></a>
<span style="color:#fe4a49">Jabber</span> -
The original name of the [Extensible Messaging and Presence Protocol](https://en.wikipedia.org/wiki/XMPP) (XMPP), the open technology for instant messaging and presence. [Jabber.org](https://en.wikipedia.org/wiki/Jabber.org) is the original instant messaging (IM) service based on XMPP.
<a name='muc'></a>
<span style="color:#fe4a49">MUC</span> -
"Multi User Chat", a groupchat
<a name='roster'></a>
<span style="color:#fe4a49">ROSTER</span> -
is your list of contacts
<a name='xep'></a>
<span style="color:#fe4a49">XEP - XMPP Extension Protocol</span> -
* [XEP-0045 MUC](https://xmpp.org/extensions/xep-0045.html) - Multi User Conference, in other words, group chats.
* [XEP-0163: PEP](http://xmpp.org/extensions/xep-0163.html) - Personal Eventing Protocol allows amongst others for automatically publishing avatars and OMEMO public keys
* [XEP-0313: MAM](http://xmpp.org/extensions/xep-0313.html) - Message Archive Management, an extension that allows one to receive messages while offline)
<a name='federated'></a>
<span style="color:#fe4a49">federated server</span> -
A group of decentralised servers that agreed upon certain standards to communicate with eachother. The federated XMPP protocol enables the user to select a client of preference and connect to a XMPP server of choice.
<a name='centralized'></a>
<span style="color:#fe4a49">centralized service</span> -
A vertical integrated service that includes both the client- and server software.
## Software: Clients
As featured in our guide on [XMPP clients](http://homebrewserver.club/picking-modern-xmpp-clients.html):
<a name='conversations'></a>
[Conversations](https://conversations.im/) - Mobile client for Android
<a name='gajim'></a>
[Gajim](https://gajim.org/) - Desktop client for Linux distributions
<a name='chatsecure'></a>
[ChatSecure](http://chatsecure.org/) - Mobile client for Apple iOS, 'experimental', but in active development
<a name='adium'></a>
[Adium](https://adium.im/) - Desktop client for Apple OSX
[There are many more clients available](https://xmpp.org/software/clients.html). Check your local F-Droid/Google Play Store/AppStore.
## Software: Server
<a name='prosody'></a>
[Prosody](http://prosody.im/) - XMPP Server software in active development (as of 2017).
## Encyption methods
<a name='c2s'></a>
<span style="color:#fe4a49">C2S</span> - The connection between a client and the server
<a name='s2s'></a>
<span style="color:#fe4a49">S2S</span> - The conneciton between servers
<a name='e2e'></a>
<span style="color:#fe4a49">E2E</span> - End-to-end encryption encrypts the content of a message, so that only the sender and receiver at the ends of the communication chain can read it.
### https/SSL/server-to-server encryption
Encrypts information while it is transfered, but the server can still read it.
### OMEMO/end-to-end encryption
The information is encrypted, and also the server cannot read it .
<a name='otr'></a>
<span style="color:#fe4a49">OTR</span> -
"off the record"
<a name='omemo'></a>
<span style="color:#fe4a49">OMEMO</span> -
OMEMO Multi-End Message and Object Encryption, OMEMO is the XMPP implementation of the Double Ratchett encryption algorithm developed for Signal by Moxie Marlinspike/Open Whisper Systems.
is a client2client encryption tool, it encrypts messages between two conversations.
<a name='tofu'></a>
<span style="color:#fe4a49">TOFU</span> -
trust on first use (Blindly assumes the received fingerprint is trusted and is therefore checked as verified. Used in ChatSecure for OTR and OMEMO, called 'Blind Trust' in Conversations
<a name='openpgp'></a>
<span style="color:#fe4a49">OpenPGP</span> -
Pretty good Privacy, the oldest available method of end-to-end encryption which requires quite some knowledge and maintenance by users. OMEMO is designed to provide similar or better encryption with less hassle. To use OpenPGP in Conversation athird party app called OpenKeyChain is required.
<a name='threat'></a>
<span style="color:#fe4a49">Threat Model</span> -
...
This list is partly based [on this glossary](https://wiki.xmpp.org/web/Usability/Glossary)
------------------------------------------------
This guide is a companion to our article [Have You Considered The Alternative?](http://homebrewserver.club/have-you-considered-the-alternative.html) on instant messaging. Also check out our guide on [configuring the self-hosted XMPP server Prosody](http://homebrewserver.club/configuring-a-modern-xmpp-server.html), and our guide on [XMPP clients](http://homebrewserver.club/picking-modern-xmpp-clients.html).