Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    +1 this is spot on the heart of the matter. There is so much safety by default people implement these days that in the worst case scenarios you still aren't risking true user mistakes: imagine the email client fails to delete, now local state is bad, and they try delete email 4 which is misaligned with the server, the vast majority of back-end devs will have a safety catch there to ensure you only delete what the user absolutely wants to and so this misalignment will not cause erroneous deletions (it may fail in error but it will not delete). Commented Jan 31, 2013 at 18:09
  • @JimmyHoffa you would use a unique email id in the delete request. It would be really bad to send delete requests based on the arbitrary display order of the emails in your inbox. Commented Nov 5, 2014 at 6:27