From 2e4a664744460f94e38c146e3b2fba09b74108f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Kaan=20K=C3=B6se?= Date: Sat, 17 Aug 2024 19:53:50 +0200 Subject: [PATCH] More detailed ImapImplementation for ID extension. --- Wino.Core/Integration/ImapClientPool.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Wino.Core/Integration/ImapClientPool.cs b/Wino.Core/Integration/ImapClientPool.cs index b49556f7..1038a950 100644 --- a/Wino.Core/Integration/ImapClientPool.cs +++ b/Wino.Core/Integration/ImapClientPool.cs @@ -33,11 +33,13 @@ namespace Wino.Core.Integration // Later on maybe we can make it configurable and leave it to the user with passing // real implementation details. - private readonly ImapImplementation _implementation = new ImapImplementation() + private readonly ImapImplementation _implementation = new() { - Version = "1.0", + Version = "1.8.0", OS = "Windows", - Vendor = "Wino" + Vendor = "Wino", + SupportUrl = "https://www.winomail.app", + Name = "Wino Mail User", }; private readonly int MinimumPoolSize = 5;