Default client size for imap client pool.

This commit is contained in:
Burak Kaan Köse
2024-06-21 04:24:31 +02:00
parent b4103a4edb
commit e4784108f7
2 changed files with 6 additions and 2 deletions

View File

@@ -48,13 +48,16 @@ namespace Wino.Core.Domain.Models.AutoDiscovery
OutgoingServerPassword = UserMinimalSettings.Password,
IncomingAuthenticationMethod = Enums.ImapAuthenticationMethod.Auto,
OutgoingAuthenticationMethod = Enums.ImapAuthenticationMethod.Auto,
OutgoingServerSocketOption = Enums.ImapConnectionSecurity.Auto,
IncomingServerSocketOption = Enums.ImapConnectionSecurity.Auto,
IncomingServer = imapUrl,
OutgoingServer = smtpUrl,
IncomingServerPort = imapPort.ToString(),
OutgoingServerPort = smtpPort.ToString(),
IncomingServerType = Enums.CustomIncomingServerType.IMAP4,
IncomingServerUsername = imapUsername,
OutgoingServerUsername = smtpUsername
OutgoingServerUsername = smtpUsername,
MaxConcurrentClients = 5
};
return serverInfo;