Automatically append sent messages to sent folder for iCloud and Yahoo.

This commit is contained in:
Burak Kaan Köse
2025-02-26 22:57:08 +01:00
parent 3561beab1d
commit 32a3fea8d7

View File

@@ -518,6 +518,12 @@ public class AccountService : BaseDatabaseService, IAccountService
ShouldAppendMessagesToSentFolder = false
};
// iCloud does not appends sent messages to sent folder automatically.
if (account.SpecialImapProvider == SpecialImapProvider.iCloud || account.SpecialImapProvider == SpecialImapProvider.Yahoo)
{
preferences.ShouldAppendMessagesToSentFolder = true;
}
account.Preferences = preferences;
// Outlook & Office 365 supports Focused inbox. Enabled by default.