mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-01 17:26:12 +00:00
Allow POP3 move to IMAP rule
This commit is contained in:
parent
c08dec2b34
commit
e3e0351e35
1 changed files with 2 additions and 3 deletions
|
@ -647,10 +647,9 @@ public class FragmentRule extends FragmentBase {
|
|||
if (protocol == EntityAccount.TYPE_IMAP)
|
||||
actions.add(new Action(EntityRule.TYPE_KEYWORD, getString(R.string.title_rule_keyword)));
|
||||
actions.add(new Action(EntityRule.TYPE_NOTES, getString(R.string.title_rule_notes)));
|
||||
if (protocol == EntityAccount.TYPE_IMAP) {
|
||||
actions.add(new Action(EntityRule.TYPE_MOVE, getString(R.string.title_rule_move)));
|
||||
actions.add(new Action(EntityRule.TYPE_MOVE, getString(R.string.title_rule_move)));
|
||||
if (protocol == EntityAccount.TYPE_IMAP)
|
||||
actions.add(new Action(EntityRule.TYPE_COPY, getString(R.string.title_rule_copy)));
|
||||
}
|
||||
actions.add(new Action(EntityRule.TYPE_DELETE, getString(R.string.title_rule_delete)));
|
||||
actions.add(new Action(EntityRule.TYPE_ANSWER, getString(R.string.title_rule_answer)));
|
||||
actions.add(new Action(EntityRule.TYPE_TTS, getString(R.string.title_rule_tts)));
|
||||
|
|
Loading…
Reference in a new issue