Remove StoreConfig.getOutboxFolder()

This commit is contained in:
cketti 2020-05-01 03:36:42 +02:00
parent fcfc7e6a22
commit 88bcea1552
2 changed files with 1 additions and 2 deletions

View file

@ -7,7 +7,6 @@ public interface StoreConfig {
boolean isSubscribedFoldersOnly();
boolean useCompression(NetworkType type);
String getOutboxFolder();
String getDraftsFolder();
int getMaximumAutoDownloadMessageSize();

View file

@ -187,7 +187,7 @@ public class ImapStore {
if (ImapFolder.INBOX.equalsIgnoreCase(serverId)) {
continue;
} else if (serverId.equals(storeConfig.getOutboxFolder())) {
} else if (serverId.equals("K9MAIL_INTERNAL_OUTBOX")) {
/*
* There is a folder on the server with the same name as our local
* outbox. Until we have a good plan to deal with this situation