mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-02 08:35:08 -04:00
41d7ca51a3
On each IMAP account, the expunge behavior can be set to expunge messages in a folder as soon as a move or delete is performed on the folder ("immediately"), each time the folder is polled, or only when executed manually. In the Message List, there is now an Expunge action in the option menu. In the Folder List, there is now an Expunge action in the context menu (long-press on the folder). For IMAP accounts, it is also possible to disable the copying of deleted messages to the Trash folder, by setting the Trash folder to -NONE-. Fixes Issue 536. Separately, in WebDAV accounts, the user can now choose the server-side equivalents of the special folders, just like for IMAP.
33 lines
866 B
XML
33 lines
866 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:id="@+id/open_folder"
|
|
android:title="@string/open_action"
|
|
/>
|
|
<item
|
|
android:id="@+id/mark_all_as_read"
|
|
android:title="@string/mark_all_as_read_action"
|
|
/>
|
|
<item
|
|
android:id="@+id/empty_trash"
|
|
android:title="@string/empty_trash_action"
|
|
/>
|
|
<item
|
|
android:id="@+id/check_mail"
|
|
android:title="@string/check_mail_action"
|
|
/>
|
|
<item
|
|
android:id="@+id/send_messages"
|
|
android:title="@string/send_messages_action"
|
|
/>
|
|
<item
|
|
android:id="@+id/folder_settings"
|
|
android:title="@string/folder_settings_action"
|
|
/>
|
|
<item
|
|
android:id="@+id/expunge"
|
|
android:title="@string/expunge_action"
|
|
/>
|
|
|
|
</menu>
|