Files
Wino-Mail/Wino.Services/SpecialImapProviderConfigResolver.cs

68 lines
3.0 KiB
C#
Raw Permalink Normal View History

2025-02-15 12:53:32 +01:00
using Wino.Core.Domain.Entities.Shared;
using Wino.Core.Domain.Enums;
using Wino.Core.Domain.Interfaces;
using Wino.Core.Domain.Models.Accounts;
2025-02-16 11:54:23 +01:00
namespace Wino.Services;
public class SpecialImapProviderConfigResolver : ISpecialImapProviderConfigResolver
2025-02-15 12:53:32 +01:00
{
2025-02-16 11:54:23 +01:00
private readonly CustomServerInformation iCloudServerConfig = new CustomServerInformation()
2025-02-16 11:35:43 +01:00
{
2025-02-16 11:54:23 +01:00
IncomingServer = "imap.mail.me.com",
IncomingServerPort = "993",
IncomingServerType = CustomIncomingServerType.IMAP4,
IncomingServerSocketOption = ImapConnectionSecurity.Auto,
IncomingAuthenticationMethod = ImapAuthenticationMethod.Auto,
OutgoingServer = "smtp.mail.me.com",
OutgoingServerPort = "587",
OutgoingServerSocketOption = ImapConnectionSecurity.Auto,
OutgoingAuthenticationMethod = ImapAuthenticationMethod.Auto,
MaxConcurrentClients = 5,
};
2025-02-15 12:53:32 +01:00
2025-02-16 11:54:23 +01:00
private readonly CustomServerInformation yahooServerConfig = new CustomServerInformation()
{
IncomingServer = "imap.mail.yahoo.com",
IncomingServerPort = "993",
IncomingServerType = CustomIncomingServerType.IMAP4,
IncomingServerSocketOption = ImapConnectionSecurity.Auto,
IncomingAuthenticationMethod = ImapAuthenticationMethod.Auto,
OutgoingServer = "smtp.mail.yahoo.com",
OutgoingServerPort = "587",
OutgoingServerSocketOption = ImapConnectionSecurity.Auto,
OutgoingAuthenticationMethod = ImapAuthenticationMethod.Auto,
MaxConcurrentClients = 5,
};
2025-02-15 12:53:32 +01:00
2025-02-16 11:54:23 +01:00
public CustomServerInformation GetServerInformation(MailAccount account, AccountCreationDialogResult dialogResult)
{
CustomServerInformation resolvedConfig = null;
2025-02-15 12:53:32 +01:00
2025-02-16 11:54:23 +01:00
if (dialogResult.SpecialImapProviderDetails.SpecialImapProvider == SpecialImapProvider.iCloud)
{
resolvedConfig = iCloudServerConfig;
2025-02-16 11:35:43 +01:00
2025-02-16 11:54:23 +01:00
// iCloud takes username before the @icloud part for incoming, but full address as outgoing.
resolvedConfig.IncomingServerUsername = dialogResult.SpecialImapProviderDetails.Address.Split('@')[0];
resolvedConfig.OutgoingServerUsername = dialogResult.SpecialImapProviderDetails.Address;
}
else if (dialogResult.SpecialImapProviderDetails.SpecialImapProvider == SpecialImapProvider.Yahoo)
{
resolvedConfig = yahooServerConfig;
2025-02-16 11:54:23 +01:00
// Yahoo uses full address for both incoming and outgoing.
resolvedConfig.IncomingServerUsername = dialogResult.SpecialImapProviderDetails.Address;
resolvedConfig.OutgoingServerUsername = dialogResult.SpecialImapProviderDetails.Address;
}
2025-02-16 11:54:23 +01:00
// Fill in account details.
resolvedConfig.Address = dialogResult.SpecialImapProviderDetails.Address;
resolvedConfig.IncomingServerPassword = dialogResult.SpecialImapProviderDetails.Password;
resolvedConfig.OutgoingServerPassword = dialogResult.SpecialImapProviderDetails.Password;
resolvedConfig.DisplayName = dialogResult.SpecialImapProviderDetails.SenderName;
return resolvedConfig;
2025-02-15 12:53:32 +01:00
}
}