Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 536615f5 authored by Wolf-Martell Montwé's avatar Wolf-Martell Montwé
Browse files

Add `:legacy:mailstore` module and move `MoreMessages`

parent a98b3b96
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@ dependencies {
    api(projects.legacy.account)
    api(projects.legacy.di)
    api(projects.legacy.folder)
    api(projects.legacy.mailstore)
    api(projects.legacy.notification)
    api(projects.legacy.search)

+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ import com.fsck.k9.mail.Part;
import com.fsck.k9.mail.ServerSettings;
import com.fsck.k9.mail.power.PowerManager;
import com.fsck.k9.mail.power.WakeLock;
import com.fsck.k9.mailstore.FolderDetailsAccessor;
import app.k9mail.legacy.mailstore.FolderDetailsAccessor;
import com.fsck.k9.mailstore.LocalFolder;
import com.fsck.k9.mailstore.LocalMessage;
import com.fsck.k9.mailstore.LocalStore;
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ import com.fsck.k9.mail.Flag
import com.fsck.k9.mail.Message
import com.fsck.k9.mail.MessageDownloadState
import java.util.Date
import com.fsck.k9.mailstore.MoreMessages as StoreMoreMessages
import app.k9mail.legacy.mailstore.MoreMessages as StoreMoreMessages

class K9BackendFolder(
    private val messageStore: MessageStore,
+1 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@ import androidx.annotation.NonNull;

import androidx.annotation.Nullable;
import app.k9mail.legacy.account.Account;
import app.k9mail.legacy.mailstore.MoreMessages;
import com.fsck.k9.K9;
import com.fsck.k9.controller.MessageReference;
import com.fsck.k9.helper.FileHelper;
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ import android.text.TextUtils;
import androidx.core.database.CursorKt;
import app.k9mail.legacy.account.Account;
import app.k9mail.legacy.di.DI;
import app.k9mail.legacy.mailstore.MoreMessages;
import com.fsck.k9.Preferences;
import com.fsck.k9.controller.MessagingControllerCommands.PendingCommand;
import com.fsck.k9.controller.PendingCommandSerializer;
Loading