This is an automated email from the ASF dual-hosted git repository. rcordier pushed a commit to branch postgresql in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 62f81aca1cac13feee119252c016e82edfe89abf Author: Quan Tran <[email protected]> AuthorDate: Mon Apr 1 16:00:57 2024 +0700 JAMES-2586 Add binding for DKIMMailetModule --- .../src/main/java/org/apache/james/PostgresJamesServerMain.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/apps/postgres-app/src/main/java/org/apache/james/PostgresJamesServerMain.java b/server/apps/postgres-app/src/main/java/org/apache/james/PostgresJamesServerMain.java index ced9292a38..b11cd7cbfb 100644 --- a/server/apps/postgres-app/src/main/java/org/apache/james/PostgresJamesServerMain.java +++ b/server/apps/postgres-app/src/main/java/org/apache/james/PostgresJamesServerMain.java @@ -62,6 +62,7 @@ import org.apache.james.modules.queue.activemq.ActiveMQQueueModule; import org.apache.james.modules.queue.rabbitmq.FakeMailQueueViewModule; import org.apache.james.modules.queue.rabbitmq.RabbitMQMailQueueModule; import org.apache.james.modules.queue.rabbitmq.RabbitMQModule; +import org.apache.james.modules.server.DKIMMailetModule; import org.apache.james.modules.server.DLPRoutesModule; import org.apache.james.modules.server.DataRoutesModules; import org.apache.james.modules.server.InconsistencyQuotasSolvingRoutesModule; @@ -148,7 +149,7 @@ public class PostgresJamesServerMain implements JamesServerMain { public static final Module PLUGINS = new QuotaMailingModule(); private static final Module POSTGRES_MODULE_AGGREGATE = Modules.combine( - new MailetProcessingModule(), POSTGRES_SERVER_MODULE, PROTOCOLS, JMAP, PLUGINS); + new MailetProcessingModule(), new DKIMMailetModule(), POSTGRES_SERVER_MODULE, PROTOCOLS, JMAP, PLUGINS); public static void main(String[] args) throws Exception { ExtraProperties.initialize(); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
