FairEmail/FAQ.md

138 lines
7.3 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-07 10:22:55 +00:00
If you have a feature request or found a bug, you can report it [as an issue](https://github.com/M66B/open-source-email/issues).
2018-09-07 14:02:12 +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.
2018-09-07 11:08:20 +00:00
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
* 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
2018-08-27 14:31:45 +00:00
* 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
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.
<a name="FAQ3"></a>
**(3) What are operations?**
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
* seen: mark message as seen/unseen in remote folder
* add: add message to remote folder
* move: move message to another remote folder
* delete: delete message from remote folder
* send: send message
* attachment: download attachment
2018-09-05 07:23:51 +00:00
* headers: download message headers
2018-09-07 15:12:43 +00:00
* flag: star/unstar remote message
2018-08-02 18:20:36 +00:00
2018-08-08 09:08:41 +00:00
<a name="FAQ4"></a>
**(4) What is a valid security certificate?**
2018-08-03 04:28:37 +00:00
Valid security certificates are officially signed (not self signed) and have matching a host name.
2018-08-02 18:20:36 +00:00
2018-08-08 09:08:41 +00:00
<a name="FAQ5"></a>
2018-08-23 09:48:27 +00:00
**(5) What does 'no IDLE support' mean?**
2018-08-04 09:55:34 +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.
2018-09-01 06:01:02 +00:00
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-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-08-25 11:28:28 +00:00
<a name="FAQ8"></a>
**(8) Can I use a Microsoft exchange account?**
If you can use a Microsoft exchange account depends on if the exchange account is accessible via IMAP.
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>
**(11) Why is STARTTLS for IMAP not supported?**
STARTTLS starts with an unencrypted connection and is therefore not secure.
All known IMAP servers support IMAP with STARTTLS, so there is no need to support STARTTLS for IMAP.
If you encounter an IMAP server that requires STARTTLS, please [create an issue](https://github.com/M66B/open-source-email/issues/new).
2018-08-27 09:37:17 +00:00
<a name="FAQ12"></a>
**(12) What is the difference between Chrome Custom Tabs and WebViews?**
The main difference is that [Chrome Custom Tabs](https://developer.chrome.com/multidevice/android/customtabs) store cookies persistently
and [WebViews](https://developer.android.com/reference/android/webkit/WebView) do not.
The latter is both safer and more inconvenient because you'll need to login to websites each and every time.
Chrome Custom Tabs are used by default, which can be changed in the advanced options in the setup screen.
2018-08-27 16:40:26 +00:00
<a name="FAQ13"></a>
2018-09-04 11:37:55 +00:00
**(13) How does progressive search work?**
2018-08-27 16:40:26 +00:00
2018-09-04 11:37:55 +00:00
You can start searching for messages on sender, subject or text by using the magnify glass in the action bar of a folder.
First messages are searched on device, then the server is requested to search.
Scrolling down will download more messages from the server.
Searching on device is case insensitive and on partial text.
Searching on the server might be case sensitive or case insensitive and might be on partial text or whole words, depending on the provider.
Progressive search 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-09-07 09:49:38 +00:00
<a name="FAQ15"></a>
**(15) Can you add ... ?**
2018-09-07 13:36:44 +00:00
* More themes / account colors: the goal is to keep the app as simple as possible, so this will not be added.
2018-09-07 09:49:38 +00:00
* LED notifications: there are less and less devices with a notification light and if there is one, it can mostly be managed by Android, so there is little point in adding support for this.
* Encryption: there is too little interest in sending/receiving encrypted messages to justifiy putting effort into this.
* POP/poll support: besides that any decent provider is supporting / should support IMAP, polling does consume extra battery power and will delay notification of new messages, so this will not be added.
2018-09-08 20:09:29 +00:00
* Multiple select: swiping is easier and doesn't have the risk of accidental touches, so multiple select would not add anything.
2018-09-07 09:49:38 +00:00
2018-08-02 13:33:06 +00:00
<br>
2018-08-03 04:28:37 +00:00
If you have another question, 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.