Conversations/README.md

113 lines
6.0 KiB
Markdown
Raw Normal View History

2014-04-01 17:05:31 -04:00
#Conversations
Conversations is an open source XMPP (formerly known as Jabber) client for
2014-04-01 17:05:31 -04:00
Android 4.0+ smart phones.
[![Google Play](http://developer.android.com/images/brand/en_generic_rgb_wo_45.png)](https://play.google.com/store/apps/details?id=eu.siacs.conversations)
2014-03-24 08:43:16 -04:00
2014-04-01 13:43:32 -04:00
![screenshots](https://raw.githubusercontent.com/siacs/Conversations/master/screenshots.png)
2014-03-21 16:50:00 -04:00
2014-02-23 13:30:24 -05:00
##Design principles
* Be as beautiful and easy to use as possible without sacrificing security or
privacy
2014-02-23 13:48:50 -05:00
* Rely on existing, well established protocols
* Do not require a Google Account or specifically Google Cloud Messaging (GCM)
2014-02-23 13:30:24 -05:00
* Require as little permissons as possible
##Features
2014-02-28 13:14:01 -05:00
* End-to-end encryption with either OTR or openPGP
2014-05-07 10:02:05 -04:00
* Sending and receiving images
2014-02-23 13:30:24 -05:00
* Holo UI
2014-03-24 12:55:21 -04:00
* Syncs with your desktop client
2014-02-23 13:30:24 -05:00
* Group Chats
2014-03-24 08:24:46 -04:00
* Address book integration
2014-03-24 12:55:21 -04:00
* Multiple Accounts / unified inbox
2014-02-23 13:48:50 -05:00
###XMPP Features
2014-02-28 13:14:01 -05:00
Conversations works with every XMPP server out there. However XMPP is an extensible
protocol. These extensions are standardized as well in so called XEPs.
Conversations supports a couple of those to make the overall userexperience better. There is a
2014-02-23 13:48:50 -05:00
chance that your current XMPP server does not support these extensions.
2014-02-28 13:14:01 -05:00
Therefore to get the most out of Conversations you should consider either switching to an
2014-02-23 13:48:50 -05:00
XMPP server that does or - even better - run your own XMPP server for you and
your friends.
These XEPs are - as of now:
2014-04-13 16:36:36 -04:00
* XEP-0065: SOCKS5 Bytestreams - or rather mod_proxy65. Will be used to tranfer files if both parties are behind a firewall (NAT).
2014-04-04 07:31:35 -04:00
* XEP-0138: Stream Compression saves bandwith
2014-03-11 20:48:41 -04:00
* XEP-0198: Stream Management allows XMPP to surive small network outages and changes of the underlying TCP connection.
2014-02-23 13:48:50 -05:00
* XEP-0280: Message Carbons which automatically syncs the messages you send to
your desktop client and thus allows you to switch seamlessly from your mobile
client to your desktop client and back within one conversation.
* XEP-0237: Roster Versioning mainly to save bandwith on poor mobile connections
2014-03-11 20:48:41 -04:00
2014-04-13 16:36:36 -04:00
##Contributors
2014-05-07 10:02:05 -04:00
(In order of appearance)
###Code
2014-05-17 04:50:29 -04:00
* [Rene Treffer](https://github.com/rtreffer)
* [Andreas Straub](https://github.com/strb)
2014-04-13 16:36:36 -04:00
2014-05-07 10:02:05 -04:00
###Translations
2014-05-17 04:50:29 -04:00
* [Sergio Cárdenas](https://github.com/kruks23) (Spanish)
* [Benoit Bouvarel](https://github.com/BenoitBouvarel) (French)
* [Daniel Gultsch](https://github.com/iNPUTmice) (German)
2014-05-23 03:59:30 -04:00
* [Aitor Beriain](https://github.com/beriain) (Basque)
2014-05-07 10:02:05 -04:00
2014-03-11 20:48:41 -04:00
##FAQ
2014-03-24 08:07:26 -04:00
###General
####How do I install Conversations?
Conversations is entirely open source and licensed under GPLv3. So if you are a
software developer you can check out the sources from github and use ant to
build your apk file.
2014-03-24 08:24:46 -04:00
The more convenient way - which not only gives you automatic updates but also
supports the further development of Conversations - is to buy the App in the Google
2014-03-24 08:43:16 -04:00
[Play Store](https://play.google.com/store/apps/details?id=eu.siacs.conversations).
2014-03-24 08:34:02 -04:00
2014-03-24 08:07:26 -04:00
####How do I create an account?
XMPP like email for example is a federated protocol which means that there is
not one company you can create your 'official xmpp account' with but there are
hundreds or even thousands of provider out there. To find one use a web search
engine of your choice. Or maybe your univeristy has one. Or you can run your own.
Or ask a friend to run one. Once you found one you can use Conversations to
create an account. Just select 'register new account on server' within the
create account dialog.
2014-03-24 08:24:46 -04:00
####How does the address book integration work?
The address bock integration was designed to protect your privacy. Conversations
neither uploads contacts from your address book to your server nor fills your
address book with unnecessary contacts from your online roster. If you manually
add a Jabber ID to your phones address book Conversations will use the name and
the profile picture of this contact. To make the process of adding Jabber IDs to
your address book easier you can click on the profile picture in the contact
detais within Conversations. This will start an add to address book intent with the jabber ID
as payload. This doesnt require Conversations to have write permissions on your
address book but also doesnt require you to copy past Jabber ID from one app to
another.
2014-05-07 10:02:05 -04:00
####How can I change my status
You can set an account offline by long pressing on it and select temporarily
disable account from the context menu. Other statuses like away, DND and N/A are
not supported for simplicity reasons. Users tend to forget their status, other
users ignore them and setting the status automatically would mean too much of an
impact on privacy.
2014-03-11 20:48:41 -04:00
###Security
####Why are there to end-to-end encryption methods and which one should I choose?
In most cases OTR should be the encryption method of choice. It works out of the box with most contacts as long as they are online.
2014-03-21 17:19:27 -04:00
However PGP can be in some cases (carbonated messages to multiple clients) be
more flexible.
2014-03-24 07:41:12 -04:00
####How do I use openPGP
Before you continue reading you should notice that the openPGP support in
Conversations is marked as experimental. This is not because it will make the app
unstable but because the fundamental concepts of PGP aren't ready for a
2014-03-24 08:07:26 -04:00
widespread use. The way PGP works is that you trust Key IDs instead of XMPP- or email addresses. So in theory your contact list should consist of Public-Key-IDs instead of email addresses. But of course no email or xmpp client out there implements these concepts. Plus PGP in the context of instant messaging has a couple of downsides. It is vulnerable to replay attacs, it is rather verbose, decryping and encrypting takes longer than OTR. It is however asynchronous and works well with carbonated messages.
2014-03-24 07:41:12 -04:00
To use openpgp you have to install the opensource app OpenKeychain (www.openkeychain.org) and then long press on the account in manage accounts and choose renew PGP announcement from the contextual menu.
2014-04-04 10:04:32 -04:00
###Development
####How do I build Conversations
Make sure to have ANDROID_HOME point to your Android SDK
```
git clone https://github.com/siacs/Conversations.git
cd Conversations
git submodule update --init --recursive
ant clean
ant debug
```