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.

47 lines
1.7 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
  1. Safe email
  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. <a name="FAQ2"></a>
  11. **(2) Why is there a permanent notification shown?**
  12. A permanent status bar notification with the number of accounts being synchronized and the number of operations pending is shown
  13. to prevent Android from killing the service that takes care of receiving and sending email.
  14. 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.
  15. <a name="FAQ3"></a>
  16. **(3) What are operations?**
  17. The low priority status bar notification shows the number of pending operations, which can be:
  18. * Mark message as seen/unseen in remote folder
  19. * Add message to remote folder
  20. * Move message to another remote folder
  21. * Delete message from remote folder
  22. * Send message
  23. * Download attachment
  24. <a name="FAQ4"></a>
  25. **(4) What is a valid security certificate?**
  26. Valid security certificates are officially signed (not self signed) and have matching a host name.
  27. <a name="FAQ5"></a>
  28. **(5) Why is IMAP IDLE required?**
  29. Without [IMAP IDLE](https://en.wikipedia.org/wiki/IMAP_IDLE) emails need to be periodically fetched,
  30. which is a waste of battery power and internet bandwidth and will delay notification of new emails.
  31. <br>
  32. If you have another question, you can use [this forum](https://forum.xda-developers.com/android/apps-games/source-email-t3824168).