Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

50 lines
1.9 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
  1. FairEmail
  2. =========
  3. Frequently Asked Questions
  4. --------------------------
  5. <a name="FAQ1"></a>
  6. **(1) Which permissions are needed and why?**
  7. * Full network access (INTERNET): to send and receive email
  8. * View network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes
  9. * Run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start
  10. * Optional: read your contacts (READ_CONTACTS): to autocomplete addresses
  11. <a name="FAQ2"></a>
  12. **(2) Why is there a permanent notification shown?**
  13. A permanent status bar notification with the number of accounts being synchronized and the number of operations pending is shown
  14. to prevent Android from killing the service that takes care of receiving and sending email.
  15. 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.
  16. <a name="FAQ3"></a>
  17. **(3) What are operations?**
  18. The low priority status bar notification shows the number of pending operations, which can be:
  19. * SEEN: mark message as seen/unseen in remote folder
  20. * ADD: add message to remote folder
  21. * MOVE: move message to another remote folder
  22. * DELETE: delete message from remote folder
  23. * SEND: send message
  24. * ATTACHMENT download attachment
  25. <a name="FAQ4"></a>
  26. **(4) What is a valid security certificate?**
  27. Valid security certificates are officially signed (not self signed) and have matching a host name.
  28. <a name="FAQ5"></a>
  29. **(5) What does 'no IDLE support' mean?**
  30. Without [IMAP IDLE](https://en.wikipedia.org/wiki/IMAP_IDLE) emails need to be periodically fetched,
  31. which is a waste of battery power and internet bandwidth and will delay notification of new emails.
  32. <br>
  33. If you have another question, you can use [this forum](https://forum.xda-developers.com/android/apps-games/source-email-t3824168).
  34. 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).