mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
3e4843e756
Provide two options for each Account: Compact (which VACUUMs the accounts and prunes recreatable attachments) Clear all data (danger!) (which wipes all messages and attachments in the account, except placeholder deleted messages) Displays a Toast when the Compact or Clear is queued, and another Toast with the shrinkage results. (Also, a small change to increase probability of seeing messages after a sync, by setting the needsRefresh on all folders when a sync is done.)
19 lines
766 B
XML
19 lines
766 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item android:id="@+id/open"
|
|
android:title="@string/open_action" />
|
|
<item android:id="@+id/empty_trash"
|
|
android:title="@string/empty_trash_action" />
|
|
<item android:id="@+id/edit_account"
|
|
android:title="@string/account_settings_action" />
|
|
<item android:id="@+id/compact"
|
|
android:title="@string/compact_action" />
|
|
<item android:id="@+id/delete_account"
|
|
android:title="@string/remove_account_action" />
|
|
<item android:id="@+id/clear_pending"
|
|
android:title="@string/clear_pending_action" />
|
|
<item android:id="@+id/clear"
|
|
android:title="@string/clear_action" />
|
|
|
|
</menu>
|