Skip to content

Commit

Permalink
Security: Enable TLSv1.3 between DavMail and Exchange/O365
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/davmail/code/trunk@3593 3d1905a2-6b24-0410-a738-b14d5a86fcbd
  • Loading branch information
mguessan committed Dec 14, 2024
1 parent b3be0f0 commit 297c660
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/java/davmail/http/HttpClientAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
public class HttpClientAdapter implements Closeable {
static final Logger LOGGER = Logger.getLogger("davmail.http.HttpClientAdapter");

static final String[] SUPPORTED_PROTOCOLS = new String[]{"TLSv1", "TLSv1.1", "TLSv1.2"};
static final String[] SUPPORTED_PROTOCOLS = new String[]{"TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3"};
static final Registry<ConnectionSocketFactory> SCHEME_REGISTRY;
static String WORKSTATION_NAME = "UNKNOWN";
static final int MAX_REDIRECTS = 10;
Expand Down Expand Up @@ -129,7 +129,7 @@ public static boolean isGzipEncoded(HttpResponse response) {
BasicCookieStore cookieStore = new BasicCookieStore() {
@Override
public void addCookie(final Cookie cookie) {
LOGGER.debug("Add cookie " + cookie);
//LOGGER.debug("Add cookie " + cookie);
super.addCookie(cookie);
}
};
Expand Down

0 comments on commit 297c660

Please sign in to comment.