FairEmail/FAQ.md

74 lines
3.3 KiB
Markdown
Raw Normal View History

2018-08-14 05:53:24 +00:00
FairEmail
=========
2018-08-02 13:33:06 +00:00
Frequently Asked Questions
--------------------------
<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-13 14:44:47 +00:00
* Optional: read your contacts (READ_CONTACTS): to autocomplete addresses
2018-08-25 13:32:52 +00:00
* ... (BILLING): to offer in-app purchases
* ... (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later, see also the next question
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-08-13 14:44:47 +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-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-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-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-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-08-14 16:22:45 +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).