This is an automated email from the ASF dual-hosted git repository.

rcordier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git


The following commit(s) were added to refs/heads/master by this push:
     new f07b62fc3f JAMES-3788 proxyFirst should be true by default
f07b62fc3f is described below

commit f07b62fc3fab5076cde4345eeeeb51998a55321f
Author: Rene Cordier <rcord...@linagora.com>
AuthorDate: Tue Feb 18 15:57:52 2025 +0700

    JAMES-3788 proxyFirst should be true by default
---
 .../james/protocols/lib/netty/AbstractConfigurableAsyncServer.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/server/protocols/protocols-library/src/main/java/org/apache/james/protocols/lib/netty/AbstractConfigurableAsyncServer.java
 
b/server/protocols/protocols-library/src/main/java/org/apache/james/protocols/lib/netty/AbstractConfigurableAsyncServer.java
index 8508006ef9..cd99ca9b5c 100644
--- 
a/server/protocols/protocols-library/src/main/java/org/apache/james/protocols/lib/netty/AbstractConfigurableAsyncServer.java
+++ 
b/server/protocols/protocols-library/src/main/java/org/apache/james/protocols/lib/netty/AbstractConfigurableAsyncServer.java
@@ -253,7 +253,7 @@ public abstract class AbstractConfigurableAsyncServer
         Optional.ofNullable(config.getBoolean("useEpoll", 
null)).ifPresent(this::setUseEpoll);
 
         proxyRequired = config.getBoolean(PROXY_REQUIRED, false);
-        proxyFirst = config.getBoolean(PROXY_FIRST, false);
+        proxyFirst = config.getBoolean(PROXY_FIRST, true);
 
         doConfigure(config);
 


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@james.apache.org
For additional commands, e-mail: notifications-h...@james.apache.org

Reply via email to