FairEmail/FAQ.md

296 lines
15 KiB
Markdown
Raw Normal View History

2018-09-07 10:22:55 +00:00
# FairEmail
2018-08-02 13:33:06 +00:00
2018-09-26 14:03:03 +00:00
If you have a question, please check the frequently asked questions below first.
At the bottom you can find how to ask other questions, request features and report bugs.
2018-09-07 11:08:20 +00:00
2018-11-03 09:44:18 +00:00
For support on authorizing an account you should consult the documentation of your provider.
* Gmail / G suite: see [question 6](#user-content-FAQ6)
* Outlook: see [question 14](#user-content-FAQ14)
2018-11-03 08:21:02 +00:00
Frequently requested features:
2018-11-04 12:58:55 +00:00
* Previewing message text in notification/widget: this is not possible because the message text is initially not downloaded.
2018-11-03 08:21:02 +00:00
* Executing filter rules: filter rules should be executed on the server because a battery powered device with possibly an unstable internet connection is not suitable for this.
* Widget to read e-mail: widgets do not allow user interaction, so a widget to read e-mail would not be very useful.
* Swipe left/right to go to previous/next message: swiping also selects message text, so this would not work reliably.
Since FairEmail is meant to be privacy friendly, the following will not be added:
* Show images without confirmation
* Show original message without confirmation
* Open links without confirmation
Confirmation is just one tap, which is just a small price for better privacy.
2018-11-04 14:42:04 +00:00
Note that your contacts could unknowingly send malicious messages if they are infected with malware.
2018-09-07 10:22:55 +00:00
## Frequently Asked Questions
2018-08-02 13:33:06 +00:00
<a name="FAQ1"></a>
2018-08-03 04:28:37 +00:00
**(1) Which permissions are needed and why?**
2018-08-02 13:33:06 +00:00
2018-10-08 06:18:44 +00:00
* have full network access (INTERNET): to send and receive email
* view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes
* run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start
* in-app billing (BILLING): to allow in-app purchases
* foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later, see also the next question
* prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages
2018-09-08 14:57:03 +00:00
* Optional: read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos
2018-08-27 14:31:45 +00:00
* Optional: find accounts on the device (GET_ACCOUNTS): to use [OAuth](https://en.wikipedia.org/wiki/OAuth) instead of passwords
2018-08-02 13:33:06 +00:00
2018-08-03 04:28:37 +00:00
<a name="FAQ2"></a>
2018-08-08 09:08:41 +00:00
**(2) Why is there a permanent notification shown?**
A permanent status bar notification with the number of accounts being synchronized and the number of operations pending is shown
to prevent Android from killing the service that takes care of receiving and sending email.
Most, if not all, other email apps don't show a notification with the "side effect" that new email is often not or late being reported.
2018-10-07 11:14:41 +00:00
Background: this is because of the introduction of [doze mode](https://developer.android.com/training/monitoring-device-state/doze-standby) in Android 6 Marshmallow.
2018-08-08 09:08:41 +00:00
<a name="FAQ3"></a>
2018-09-12 09:24:58 +00:00
**(3) What are operations and why are they pending?**
2018-08-02 18:20:36 +00:00
The low priority status bar notification shows the number of pending operations, which can be:
2018-09-05 07:23:51 +00:00
* add: add message to remote folder
* move: move message to another remote folder
* delete: delete message from remote folder
* send: send message
* seen: mark message as seen/unseen in remote folder
2018-11-03 08:21:02 +00:00
* flag: add/remove stars
* headers: download message headers
* body: download message text
* attachment: download attachment
2018-08-02 18:20:36 +00:00
2018-09-12 09:24:58 +00:00
Operations are processed only when there is a connection to the email server or when manually synchronizing.
2018-11-03 17:39:58 +00:00
See also [this FAQ](#user-content-FAQ16).
2018-09-12 09:24:58 +00:00
2018-08-08 09:08:41 +00:00
<a name="FAQ4"></a>
2018-11-05 07:30:29 +00:00
**(4) How can I use an invalid security certificate / IMAP STARTTLS / an empty password?**
2018-08-03 04:28:37 +00:00
2018-11-05 07:30:29 +00:00
Invalid security certificate: you should try to fix this by contacting your provider or by getting a valid security certificate
because invalid security certificates are insecure and allow [man-in-the-middle attacks](https://en.wikipedia.org/wiki/Man-in-the-middle_attack).
If money is an obstacle, you can get free security certificates from [Lets Encrypt](https://letsencrypt.org).
IMAP STARTTLS: the EFF [writes](https://www.eff.org/nl/deeplinks/2018/06/announcing-starttls-everywhere-securing-hop-hop-email-delivery):
"*Additionally, even if you configure STARTTLS perfectly and use a valid certificate, theres still no guarantee your communication will be encrypted.*"
Empty password: your username is likely easily guessed, so this is very insecure.
If you still want to use an invalid security certificate, IMAP STARTTLS or an empty password,
you'll need to enable insecure connections in the advanced settings and also in the account and/or identity settings.
Additionally, IMAP STARTTLS needs to be enabled in the account settings too.
2018-08-02 18:20:36 +00:00
2018-08-08 09:08:41 +00:00
<a name="FAQ5"></a>
2018-09-21 17:19:02 +00:00
~~**(5) What does 'no IDLE support' mean?**~~
2018-08-04 09:55:34 +00:00
2018-09-21 17:19:02 +00:00
~~Without [IMAP IDLE](https://en.wikipedia.org/wiki/IMAP_IDLE) emails need to be periodically fetched,~~
~~which is a waste of battery power and internet bandwidth and will delay notification of new emails.~~
~~Since the goal of FairEmail is to offer safe and fast email, providers without IMAP IDLE are not supported.~~
~~You should consider this a problem of the provider, not of the app.~~
~~Almost all email providers offer IMAP IDLE, with as notable exception Yahoo!~~
2018-08-02 18:20:36 +00:00
2018-08-23 18:49:29 +00:00
<a name="FAQ6"></a>
2018-08-24 16:41:22 +00:00
**(6) How can I login to Gmail / G suite?**
2018-08-23 18:49:29 +00:00
2018-09-15 06:26:39 +00:00
Preferably select Gmail as provider and select an account on your device.
2018-08-24 16:41:22 +00:00
To login to Gmail / G suite you'll often need an app password, for example when two factor authentication is enabled.
2018-08-23 18:49:29 +00:00
See here for instructions: [https://support.google.com/accounts/answer/185833](https://support.google.com/accounts/answer/185833).
2018-08-26 10:32:56 +00:00
If this doesn't work, see here for more solutions: [https://support.google.com/mail/accounts/answer/78754](https://support.google.com/mail/accounts/answer/78754)
2018-08-25 09:19:20 +00:00
<a name="FAQ7"></a>
**(7) Why are messages in the outbox not moved to the sent folder?**
Messages in the outbox are moved to the sent folder as soon as your provider adds the message to the sent folder.
If this doesn't happen, your provider might not keep track of sent messages or you might be using an SMTP server not related to the provider.
In these cases you can enable the account option *Store sent messages* to let the app move messages from the outbox to the sent folder after sending.
2018-10-26 07:34:23 +00:00
There is a menu to move sent messages to the sent folder after enabling this option.
2018-08-25 09:19:20 +00:00
2018-08-25 11:28:28 +00:00
<a name="FAQ8"></a>
2018-09-23 07:00:13 +00:00
**(8) Can I use a Microsoft Exchange account?**
2018-08-25 11:28:28 +00:00
2018-09-23 07:00:13 +00:00
You can use a Microsoft Exchange account if it is accessible via IMAP.
2018-08-25 11:28:28 +00:00
ActiveSync is not supported at this moment.
See here for more information: [https://support.office.com/en-us/article/what-is-a-microsoft-exchange-account-47f000aa-c2bf-48ac-9bc2-83e5c6036793](https://support.office.com/en-us/article/what-is-a-microsoft-exchange-account-47f000aa-c2bf-48ac-9bc2-83e5c6036793)
2018-08-25 14:23:53 +00:00
<a name="FAQ9"></a>
**(9) What are identities?**
Identities represent email addresses you are sending *from*.
Some providers allow you to have multiple email aliases.
2018-08-25 14:36:23 +00:00
You can configure these by setting the email address field to the alias address and setting the user name field to your main email address.
2018-08-25 11:28:28 +00:00
2018-08-26 13:23:07 +00:00
<a name="FAQ10"></a>
**(10) What does 'UIDPLUS not supported' mean?**
The error message *UIDPLUS not supported* means that your email provider does not provide the IMAP [UIDPLUS extension](https://tools.ietf.org/html/rfc4315).
This IMAP extension is required to implement two way synchronization, which is not an optional feature.
So, unless your provider can enable this extension, you cannot use FairEmail for this provider.
2018-08-27 05:17:08 +00:00
<a name="FAQ11"></a>
2018-10-23 07:52:20 +00:00
~~**(11) Why is STARTTLS for IMAP not supported?**~~
2018-08-27 05:17:08 +00:00
2018-10-23 07:52:20 +00:00
~~STARTTLS starts with a not encrypted connection and is therefore not secure.~~
~~All well known IMAP servers support IMAP with a plain SSL connection, so there is no need to support STARTTLS for IMAP.~~
~~If you encounter an IMAP server that requires STARTTLS, please let me know.~~
2018-10-01 15:33:16 +00:00
2018-10-23 07:52:20 +00:00
~~For more background information, please see [this article](https://www.eff.org/nl/deeplinks/2018/06/announcing-starttls-everywhere-securing-hop-hop-email-delivery).~~
2018-10-01 15:33:16 +00:00
2018-10-23 07:52:20 +00:00
~~tl;dr; "*Additionally, even if you configure STARTTLS perfectly and use a valid certificate, theres still no guarantee your communication will be encrypted.*"~~
2018-08-27 05:17:08 +00:00
2018-10-29 17:35:37 +00:00
<a name="FAQ12"></a>
**(12) How does encryption/decryption work?**
First of all you need to install and configure [OpenKeychain](https://f-droid.org/en/packages/org.sufficientlysecure.keychain/).
To encrypt a message before sending, just select the menu *Encrypt*. Similarly, to decrypt a received message, just select the menu *Decrypt*.
2018-11-05 07:30:29 +00:00
Encryption is [Autocrypt](https://autocrypt.org/) compatible. For security reasons received messages are not decrypted automatically.
Encryption/decryption is a pro feature.
2018-10-29 17:35:37 +00:00
2018-08-27 16:40:26 +00:00
<a name="FAQ13"></a>
2018-10-10 13:09:02 +00:00
**(13) How does search on server work?**
2018-08-27 16:40:26 +00:00
2018-10-26 07:34:23 +00:00
You can start searching for messages on sender, recipient, subject or message text by using the magnify glass in the action bar of a folder (not in the unified inbox because it could be a collection of folders).
2018-11-04 08:59:09 +00:00
First local messages will be searched and after that the server will execute the search.
Searching local messages is case insensitive and on partial text.
The message text of local messages will not be searched if the message text was not downloaded yet.
2018-10-10 13:09:02 +00:00
Searching by the server might be case sensitive or case insensitive and might be on partial text or whole words, depending on the provider.
2018-11-04 08:59:09 +00:00
Searching messages is a pro feature.
2018-08-27 16:40:26 +00:00
2018-08-29 05:54:05 +00:00
<a name="FAQ14"></a>
2018-09-06 11:06:57 +00:00
**(14) How can I setup Outlook with 2FA?**
2018-08-29 05:54:05 +00:00
2018-09-06 11:06:57 +00:00
To use Outlook with two factor authentication enabled, you need to create an app password.
See [here](https://support.microsoft.com/en-us/help/12409/microsoft-account-app-passwords-two-step-verification) for the details.
2018-09-04 11:37:55 +00:00
2018-11-04 11:29:28 +00:00
<a name="FAQ15"></a>
**(15) Why does the message text keep loading?**
2018-11-04 13:30:27 +00:00
The message header and message body are fetched separately from the server.
The message text of larger messages is not being pre-fetched on metered connections and need to be fetched on opening the message.
2018-11-04 11:29:28 +00:00
The message text will keep loading if there is no connection to the account, see also the next question.
2018-09-09 08:54:18 +00:00
<a name="FAQ16"></a>
**(16) Why are messages not being synchronized?**
Possible causes of messages not being synchronized (sent or received) are:
2018-10-26 07:34:23 +00:00
* The account or folder(s) are not set to synchronize
2018-09-09 08:54:18 +00:00
* The number of days to synchronize is set to low
* There is no usable internet connection
* The email server is temporarily not available
2018-09-14 16:50:20 +00:00
* Android stopped the synchronization service
2018-09-09 08:54:18 +00:00
So, check your account and folder settings and check if the accounts/folders are connected (see the legend menu for the meaning of the icons).
2018-09-14 16:50:20 +00:00
On some devices, where there are lots of applications competing for memory, Android may stop the synchronization service as a last resort.
Some Android versions,
in particular of Huawei (see [here](https://www.forbes.com/sites/bensin/2016/07/04/push-notifications-not-coming-through-to-your-huawei-phone-heres-how-to-fix-it/) for a fix)
or Xiaomi (see [here](https://www.forbes.com/sites/bensin/2016/11/17/how-to-fix-push-notifications-on-xiaomis-miui-8-for-real/) for a fix)
stop apps and services too aggressively.
2018-09-09 08:54:18 +00:00
<a name="FAQ17"></a>
**(17) Why does manual synchronize not work?**
If the *Synchronize now* menu is dimmed, there is no connection to the account.
See the previous question for more information.
2018-11-04 13:30:27 +00:00
<a name="FAQ18"></a>
**(18) Why is the message preview not always shown?**
The preview of the message text cannot be shown if the message body has not been downloaded yet.
See also [this FAQ](#user-content-FAQ15).
2018-09-13 05:51:28 +00:00
<a name="FAQ19"></a>
**(19) Why are the pro features so expensive?**
The right question is "*why are there so many taxes and fees?*":
* VAT: 25% (depending on your country)
* Google fee: 30%
* Income tax: 50%
So, what is left for the developer is just a fraction of what you pay.
Note that only some convenience and advanced features need to be purchased, which means that FairEmail is basically free to use.
Also note that most free apps will appear not to be sustainable in the end, whereas FairEmail is properly maintained and supported,
and that free apps may have a catch, like sending privacy sensitive information to the internet.
<a name="FAQ20"></a>
**(20) Can I get a refund?**
If a purchased pro feature doesn't work as intended
and this isn't caused by a problem in the free features
and I cannot fix the problem in a timely manner, you can get a refund.
In all other cases there is no refund possible.
In no circumstances there is a refund possible for any problem related to the free features,
since there wasn't paid anything for them and because they can be evaluated without any limitation.
I take my responsibility as seller to deliver what has been promised
and I expect that you take responsibility for informing yourself of what you are buying.
2018-09-14 14:33:14 +00:00
<a name="FAQ21"></a>
**(21) How do I enable the notification light?**
Before Android 8 Oreo: there is an advanced option in the setup for this.
Android 8 Oreo and later: see [here](https://developer.android.com/training/notify-user/channels) about how to configure notification channels.
2018-09-19 10:54:08 +00:00
<a name="FAQ22"></a>
**(22) Why do I get 'Couldn't connect to host' ?**
The message *Couldn't connect to host ...* means that FairEmail was not able to connect to the email server.
Possible causes are:
* A firewall is blocking connections to the server
* The email server is refusing to accept the connection
* The host name or port number is invalid
* The are problems with the internet connection
If you are using a VPN, the VPN provider might block the connection because it is too aggressively trying to prevent spam.
2018-09-22 07:02:37 +00:00
<a name="FAQ23"></a>
**(23) Why do I get 'Too many simultaneous connections' ?**
The message *Too many simultaneous connections* is sent by the email server when there are too many connections to the same email account at the same time.
Possible causes are:
* There are multiple email clients connected to the same account
* The same email client is connected multiple times to the same account
* The previous connection was terminated abruptly for example by losing internet connectivity
2018-09-23 07:00:13 +00:00
<a name="FAQ24"></a>
**(24) What is browse messages on the server?**
Browse messages on the server will fetch messages from the email server in real time
when you reach the end of the list of synchronized messages, even when the folder is set to not synchronize.
You can disable this feature under *Setup* > *Advanced options* > *Browse messages on the server*.
2018-10-07 12:57:20 +00:00
<a name="FAQ25"></a>
2018-11-03 17:39:58 +00:00
**(25) Why can't I select/open/save an image, attachment or a file?**
2018-10-07 12:57:20 +00:00
2018-11-03 17:39:58 +00:00
If a menu item to select/open/save a file is disabled (dimmed),
the [storage access framework](https://developer.android.com/guide/topics/providers/document-provider),
a standard Android component, is probably not present,
2018-10-07 12:57:20 +00:00
for example because your custom ROM does not include it or because it was removed.
FairEmail does not request storage permissions, so this framework is required to select files and folders.
2018-11-03 08:21:02 +00:00
No app, except maybe file managers, targeting Android 4.4 KitKat or later should ask for storage permissions because it would allow access to *all* files.
2018-10-07 12:57:20 +00:00
2018-10-17 18:23:38 +00:00
<a name="FAQ26"></a>
**(26) Can I help to translate FairEmail in my own language?**
Yes, you can translate the texts of FairEmail in your own language [here](https://crowdin.com/project/open-source-email).
Registration is free.
2018-08-02 13:33:06 +00:00
<br>
2018-09-26 14:03:03 +00:00
If you have another question, want to request a feature or report a bug, you can use [this forum](https://forum.xda-developers.com/android/apps-games/source-email-t3824168).
2018-09-07 11:08:20 +00:00
Registration is free.