<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128864#M34917</link>
    <description>&lt;P&gt;You can use Docker environment variables for every Alfreco property you need to add.&lt;/P&gt;
&lt;P&gt;Just modify your &lt;STRONG&gt;docker-compose.yml&lt;/STRONG&gt; file to include mail settings:&lt;/P&gt;

&lt;PRE&gt;services:
    alfresco:
        environment:
            JAVA_OPTS : '&lt;BR /&gt;              -Dnotification.email.siteinvite=true&lt;BR /&gt;              -Dmail.host=smtp.gmail.com&lt;BR /&gt;              -Dmail.port=465&lt;BR /&gt;              -Dmail.username=***************@gmail.com&lt;BR /&gt;              -Dmail.password=***************&lt;BR /&gt;              -Dmail.protocol=smtps&lt;BR /&gt;              -Dmail.smtps.starttls.enable=true&lt;BR /&gt;              -Dmail.smtps.auth=true&lt;BR /&gt;              -Dmail.smtps.starttls.enable=true&lt;BR /&gt;              -Dmail.smtps.auth=true
            '
&lt;/PRE&gt;</description>
    <pubDate>Thu, 09 Jun 2022 11:46:18 GMT</pubDate>
    <dc:creator>angelborroy</dc:creator>
    <dc:date>2022-06-09T11:46:18Z</dc:date>
    <item>
      <title>Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128863#M34916</link>
      <description>&lt;P&gt;Hello community&lt;BR /&gt;I installed alfresco Community 7.2 using Docker Compose on Ubuntu 20.04&lt;BR /&gt;I want to implement mail service for notifications. I followed the official documentation but found that I may not have the alfresco-global.properties file where to add the properties.&lt;BR /&gt;However, I have four alfresco-global.properties files located at:&lt;BR /&gt;&lt;STRONG&gt;/var/lib/docker/overlay2/615da5d5f405f76a9b1eca9143061ab4f42bb7c0221488544ea1ff5bdf61f6dd/diff/usr/local/tomcat/webapps/alfresco/WEB-INF/classes/alfresco/module/alfresco-share-services/alfresco-global.properties&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;/var/lib/docker/overlay2/b2b206abb8d61b31245e997d9c528d84ae00ef0df98a6bba10b431c440d6392a/diff/usr/local/tomcat/webapps/alfresco/WEB-INF/classes/alfresco/module/alfresco-share-services/alfresco-global.properties&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;/var/lib/docker/overlay2/502e766e1649c6a6c8bb73354bb77a8f6c126acd6d99fad635048a6a2a20b64c/diff/usr/local/tomcat/shared/classes/alfresco-global.properties&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;/var/lib/docker/overlay2/adce94ea8056b9973759739f4f56379fa832d1739e0c627f50bbc5d32643b25b/diff/usr/local/tomcat/shared/classes/alfresco-global.properties&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The first two contain only:&lt;BR /&gt;&lt;STRONG&gt;# Disable load of sample site&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;#&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;sample.site.disabled=false&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;And the last two are empty. So I don't know in which files to put the properties&lt;/P&gt;&lt;P&gt;I followed this instruction from the hub ( &lt;STRONG&gt;&lt;A href="https://hub.alfresco.com/t5/alfresco-content-services-forum/alfresco-community-6-2-docker-outbound-email-configuration/m-p/306366#M23829" target="_blank" rel="noopener nofollow noreferrer"&gt;https://hub.alfresco.com/t5/alfresco-content-services-forum/alfresco-community-6-2-docker-outbound-email-configuration/m-p/306366#M23829&lt;/A&gt;&lt;/STRONG&gt; ) where it's the docker-compose.yml file which contains the properties but my email is not sent. In the logs, I get the following errors after adding a user to a site or after assigning a workflow to a user:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2022-06-09 10:48:50,801 ERROR [action.executer.MailActionExecuter] [http-nio-8080-exec-7] Failed to send email to ***********@gmail.com : org.springframework.mail.MailSendException: Mail server connection failed; nested exception is com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com. Failed messages: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com; message exceptions (1) are:Failed message 1: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Here are the added properties:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-notification.email.siteinvite=true&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.host=smtp.gmail.com&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.port=465&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.username=***************@gmail.com&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.password=***************&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.protocol=smtps&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.smtps.starttls.enable=true&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.smtps.auth=true&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-mail.smtps.starttls.enable=true&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-mail.smtps.auth=true&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Here are my constraints, what can I do?&lt;BR /&gt;Please help me to get out of this. Tanks.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 11:27:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128863#M34916</guid>
      <dc:creator>Phfirst</dc:creator>
      <dc:date>2022-06-09T11:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128864#M34917</link>
      <description>&lt;P&gt;You can use Docker environment variables for every Alfreco property you need to add.&lt;/P&gt;
&lt;P&gt;Just modify your &lt;STRONG&gt;docker-compose.yml&lt;/STRONG&gt; file to include mail settings:&lt;/P&gt;

&lt;PRE&gt;services:
    alfresco:
        environment:
            JAVA_OPTS : '&lt;BR /&gt;              -Dnotification.email.siteinvite=true&lt;BR /&gt;              -Dmail.host=smtp.gmail.com&lt;BR /&gt;              -Dmail.port=465&lt;BR /&gt;              -Dmail.username=***************@gmail.com&lt;BR /&gt;              -Dmail.password=***************&lt;BR /&gt;              -Dmail.protocol=smtps&lt;BR /&gt;              -Dmail.smtps.starttls.enable=true&lt;BR /&gt;              -Dmail.smtps.auth=true&lt;BR /&gt;              -Dmail.smtps.starttls.enable=true&lt;BR /&gt;              -Dmail.smtps.auth=true
            '
&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jun 2022 11:46:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128864#M34917</guid>
      <dc:creator>angelborroy</dc:creator>
      <dc:date>2022-06-09T11:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128865#M34918</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/5487"&gt;@angelborroy&lt;/A&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;You can use Docker environment variables for every Alfreco property you need to add.&lt;/P&gt;&lt;P&gt;Just modify your &lt;STRONG&gt;docker-compose.yml&lt;/STRONG&gt; file to include mail settings:&lt;/P&gt;&lt;PRE&gt;services:
    alfresco:
        environment:
            JAVA_OPTS : '&lt;BR /&gt;              -Dnotification.email.siteinvite=true&lt;BR /&gt;              -Dmail.host=smtp.gmail.com&lt;BR /&gt;              -Dmail.port=465&lt;BR /&gt;              -Dmail.username=***************@gmail.com&lt;BR /&gt;              -Dmail.password=***************&lt;BR /&gt;              -Dmail.protocol=smtps&lt;BR /&gt;              -Dmail.smtps.starttls.enable=true&lt;BR /&gt;              -Dmail.smtps.auth=true&lt;BR /&gt;              -Dmail.smtps.starttls.enable=true&lt;BR /&gt;              -Dmail.smtps.auth=true
            '&lt;/PRE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Thank you for your reply.&lt;BR /&gt;But it still does not work (the email is not sent).&lt;BR /&gt;Here is the error I get in the when I add a user to a site:&lt;/P&gt;&lt;P&gt;ERROR [action.executer.MailActionExecuter] [http-nio-8080-exec-10] Failed to send email to ***********@gmail.com : org.springframework.mail.MailSendException: Mail server connection failed; nested exception is com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com. Failed messages: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com; message exceptions (1) are:Failed message 1: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com&lt;/P&gt;&lt;P&gt;We can see in the error the host smtp.example.com port 25 while I used as host smtp.gmail.com and 465 as port number. I don't know where this comes from.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 23:28:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128865#M34918</guid>
      <dc:creator>Phfirst</dc:creator>
      <dc:date>2022-06-09T23:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128866#M34919</link>
      <description>&lt;P&gt;Please, has anyone been able to find a solution for my problem above ?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 12:08:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128866#M34919</guid>
      <dc:creator>Phfirst</dc:creator>
      <dc:date>2022-06-14T12:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128867#M34920</link>
      <description>&lt;P&gt;As mentioned by&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/5487"&gt;@angelborroy&lt;/A&gt;&amp;nbsp;you need to pass the params correctly.&lt;/P&gt;
&lt;P&gt;Please share your full docker-compose file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a full sample, if that helps:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;version: "2"

services:
  alfresco:
    image: alfresco/alfresco-content-repository-community:7.2.0
    mem_limit: 2g
    environment:
      JAVA_TOOL_OPTIONS: "
        -Dencryption.keystore.type=JCEKS
        -Dencryption.cipherAlgorithm=DESede/CBC/PKCS5Padding
        -Dencryption.keyAlgorithm=DESede
        -Dencryption.keystore.location=/usr/local/tomcat/shared/classes/alfresco/extension/keystore/keystore
        -Dmetadata-keystore.password=mp6yc0UD9e
        -Dmetadata-keystore.aliases=metadata
        -Dmetadata-keystore.metadata.password=oKIWzVdEdA
        -Dmetadata-keystore.metadata.algorithm=DESede
        "
      JAVA_OPTS: "
        -Ddb.driver=org.postgresql.Driver
        -Ddb.username=alfresco
        -Ddb.password=alfresco
        -Ddb.url=jdbc:postgresql://postgres:5432/alfresco
        -Dsolr.host=solr6
        -Dsolr.port=8983
        -Dsolr.http.connection.timeout=1000
        -Dsolr.secureComms=secret
        -Dsolr.sharedSecret=secret
        -Dsolr.base.url=/solr
        -Dindex.subsystem.name=solr6
        -Dshare.host=127.0.0.1
        -Dshare.port=8080
        -Dalfresco.host=localhost
        -Dalfresco.port=8080
        -Daudit.enabled=true
        -Daudit.alfresco-access.enabled=true
        -Daudit.filter.alfresco-access.default.enabled=true
        -Daudit.alfresco-access.sub-actions.enabled=true
        -Daudit.filter.alfresco-access.transaction.user=\"~System;~null;.*\"
        -Daudit.filter.alfresco-access.transaction.action=\"~.*;null\"
        -Daos.baseUrlOverwrite=http://localhost:8080/alfresco/aos
        -Dmessaging.broker.url=\"failover:(nio://activemq:61616)?timeout=3000&amp;amp;jms.useCompression=true\"
        -Ddeployment.method=DOCKER_COMPOSE
        -DlocalTransform.core-aio.url=http://transform-core-aio:8090/
        -Dcsrf.filter.enabled=false
       &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt; -Dnotification.email.siteinvite=true
        -Dmail.host=smtp.gmail.com
        -Dmail.port=465
        -Dmail.username=***************@gmail.com
        -Dmail.password=***************
        -Dmail.protocol=smtps
        -Dmail.smtps.starttls.enable=true
        -Dmail.smtps.auth=true
        -Dmail.smtps.starttls.enable=true
        -Dmail.smtps.auth=true&lt;/STRONG&gt;&lt;/FONT&gt;
        -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80
        "

  transform-core-aio:
    image: alfresco/alfresco-transform-core-aio:2.5.7
    mem_limit: 1536m
    environment:
      JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"
    ports:
      - "8090:8090"

  share:
    image: alfresco/alfresco-share:7.2.0
    mem_limit: 1g
    environment:
      REPO_HOST: "alfresco"
      REPO_PORT: "8080"
      JAVA_OPTS: "
        -XX:MinRAMPercentage=50
        -XX:MaxRAMPercentage=80
        -Dalfresco.host=localhost
        -Dalfresco.port=8080
        -Dalfresco.context=alfresco
        -Dalfresco.protocol=http
        "

  postgres:
    image: postgres:13.3
    mem_limit: 512m
    environment:
      - POSTGRES_PASSWORD=alfresco
      - POSTGRES_USER=alfresco
      - POSTGRES_DB=alfresco
    command: postgres -c max_connections=300 -c log_min_messages=LOG
    ports:
      - "5432:5432"

  solr6:
    image: alfresco/alfresco-search-services:2.0.3
    mem_limit: 2g
    environment:
      # Solr needs to know how to register itself with Alfresco
      SOLR_ALFRESCO_HOST: "alfresco"
      SOLR_ALFRESCO_PORT: "8080"
      # Alfresco needs to know how to call solr
      SOLR_SOLR_HOST: "solr6"
      SOLR_SOLR_PORT: "8983"
      # Create the default alfresco and archive cores
      SOLR_CREATE_ALFRESCO_DEFAULTS: "alfresco,archive"
      # HTTPS or SECRET
      ALFRESCO_SECURE_COMMS: "secret"
      # SHARED SECRET VALUE
      JAVA_TOOL_OPTIONS: "
          -Dalfresco.secureComms.secret=secret
      "
    ports:
      - "8083:8983" # Browser port

  activemq:
    image: alfresco/alfresco-activemq:5.16.4-jre11-centos7
    mem_limit: 1g
    ports:
      - "8161:8161" # Web Console
      - "5672:5672" # AMQP
      - "61616:61616" # OpenWire
      - "61613:61613" # STOMP

  proxy:
    image: alfresco/alfresco-acs-nginx:3.2.0
    mem_limit: 128m
    environment:
      DISABLE_PROMETHEUS: "true"
      DISABLE_SYNCSERVICE: "true"
      DISABLE_ADW: "true"
    depends_on:
      - alfresco
    ports:
      - "8080:8080"
    links:
      - alfresco
      - share
&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Jun 2022 19:55:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128867#M34920</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-06-15T19:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128868#M34921</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Thanks for your help.&lt;BR /&gt;I think I put the parameters correctly as you say but sending the E-mail does not always work. And the following error remains:&lt;/P&gt;&lt;DIV class="lia-spoiler-container"&gt;&lt;A class="lia-spoiler-link" href="#" rel="nofollow noopener noreferrer"&gt;Spoiler&lt;/A&gt;&lt;NOSCRIPT&gt; (Highlight to read)&lt;/NOSCRIPT&gt;&lt;DIV class="lia-spoiler-border"&gt;&lt;DIV class="lia-spoiler-content"&gt;ERROR [action.executer.MailActionExecuter] [http-nio-8080-exec-5] Failed to send email to akakpokophonso@gmail.com : org.springframework.mail.MailSendException: Mail server connection failed; nested exception is com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com. Failed messages: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com; message exceptions (1) are:Failed message 1: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com&lt;/DIV&gt;&lt;NOSCRIPT&gt;&lt;DIV class="lia-spoiler-noscript-container"&gt;&lt;DIV class="lia-spoiler-noscript-content"&gt;ERROR [action.executer.MailActionExecuter] [http-nio-8080-exec-5] Failed to send email to akakpokophonso@gmail.com : org.springframework.mail.MailSendException: Mail server connection failed; nested exception is com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com. Failed messages: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com; message exceptions (1) are:Failed message 1: com.sun.mail.util.MailConnectException: Couldn't connect to host, port: smtp.example.com, 25; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com&lt;/DIV&gt;&lt;/DIV&gt;&lt;/NOSCRIPT&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Is there any other configuration to do that I don't know?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Also the official (...) documentation talks about MANAGING OUTGOING EMAILS where it states to put parameters by opening the Admin console, Mail Services then Outgoing Email; apart from CONFIGURE OUTGOING EMAILS. Is this an additional configuration that needs to be done too or not?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;And here is my docker-compose.yml:&lt;/P&gt;&lt;DIV class="lia-spoiler-container"&gt;&lt;A class="lia-spoiler-link" href="#" rel="nofollow noopener noreferrer"&gt;Spoiler&lt;/A&gt;&lt;NOSCRIPT&gt; (Highlight to read)&lt;/NOSCRIPT&gt;&lt;DIV class="lia-spoiler-border"&gt;&lt;DIV class="lia-spoiler-content"&gt;&lt;P&gt;version: "2"&lt;/P&gt;&lt;P&gt;services:&lt;BR /&gt;alfresco:&lt;BR /&gt;image: quay.io/alfresco/alfresco-content-repository:7.2.0&lt;BR /&gt;mem_limit: 1900m&lt;BR /&gt;environment:&lt;BR /&gt;JAVA_TOOL_OPTIONS: "&lt;BR /&gt;-Dencryption.keystore.type=JCEKS&lt;BR /&gt;-Dencryption.cipherAlgorithm=DESede/CBC/PKCS5Padding&lt;BR /&gt;-Dencryption.keyAlgorithm=DESede&lt;BR /&gt;-Dencryption.keystore.location=/usr/local/tomcat/shared/classes/alfresco/extension/keystore/keystore&lt;BR /&gt;-Dmetadata-keystore.password=mp6yc0UD9e&lt;BR /&gt;-Dmetadata-keystore.aliases=metadata&lt;BR /&gt;-Dmetadata-keystore.metadata.password=oKIWzVdEdA&lt;BR /&gt;-Dmetadata-keystore.metadata.algorithm=DESede&lt;BR /&gt;"&lt;BR /&gt;JAVA_OPTS: "&lt;BR /&gt;-Ddb.driver=org.postgresql.Driver&lt;BR /&gt;-Ddb.username=alfresco&lt;BR /&gt;-Ddb.password=alfresco&lt;BR /&gt;-Ddb.url=jdbc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ostgresql://postgres:5432/alfresco&lt;BR /&gt;-Dsolr.host=solr6&lt;BR /&gt;-Dsolr.port=8983&lt;BR /&gt;-Dsolr.secureComms=secret&lt;BR /&gt;-Dsolr.sharedSecret=secret&lt;BR /&gt;-Dsolr.base.url=/solr&lt;BR /&gt;-Dindex.subsystem.name=solr6&lt;BR /&gt;-Dshare.host=127.0.0.1&lt;BR /&gt;-Dshare.port=8080&lt;BR /&gt;-Dalfresco.host=localhost&lt;BR /&gt;-Dalfresco.port=8080&lt;BR /&gt;-Daos.baseUrlOverwrite=&lt;A href="http://localhost:8080/alfresco/aos" target="_blank" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/alfresco/aos&lt;/A&gt;&lt;BR /&gt;-Dmessaging.broker.url=\"failover&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;nio://activemq:61616)?timeout=3000&amp;amp;jms.useCompression=true\"&lt;BR /&gt;-Ddeployment.method=DOCKER_COMPOSE&lt;BR /&gt;-Dtransform.service.enabled=true&lt;BR /&gt;-Dtransform.service.url=&lt;A href="http://transform-router:8095" target="_blank" rel="nofollow noopener noreferrer"&gt;http://transform-router:8095&lt;/A&gt;&lt;BR /&gt;-Dsfs.url=&lt;A href="http://shared-file-store:8099/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://shared-file-store:8099/&lt;/A&gt;&lt;BR /&gt;-DlocalTransform.core-aio.url=&lt;A href="http://transform-core-aio:8090/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://transform-core-aio:8090/&lt;/A&gt;&lt;BR /&gt;-Dcsrf.filter.enabled=false&lt;BR /&gt;-Ddsync.service.uris=&lt;A href="http://localhost:9090/alfresco" target="_blank" rel="nofollow noopener noreferrer"&gt;http://localhost:9090/alfresco&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-Dnotification.email.siteinvite=true&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.host=smtp.gmail.com&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.port=465&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.username=********@gmail.com&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.password=**********&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.protocol=smtps&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.smtps.starttls.enable=true&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.smtps.auth=true&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.smtps.starttls.enable=true&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.encoding=UTF-8&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.testmessage.send=true&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.testmessage.to=akakpokophonso@gmail.com&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.testmessage.subject=Email Test&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;-Dmail.testmessage.text= The outbound email service is working correctly&lt;/STRONG&gt;&lt;BR /&gt;-XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80&lt;BR /&gt;"&lt;/P&gt;&lt;P&gt;transform-router:&lt;BR /&gt;mem_limit: 512m&lt;BR /&gt;image: quay.io/alfresco/alfresco-transform-router:1.5.2&lt;BR /&gt;environment:&lt;BR /&gt;JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"&lt;BR /&gt;ACTIVEMQ_URL: "nio://activemq:61616"&lt;BR /&gt;CORE_AIO_URL: "&lt;A href="http://transform-core-aio:8090" target="_blank" rel="nofollow noopener noreferrer"&gt;http://transform-core-aio:8090&lt;/A&gt;"&lt;BR /&gt;FILE_STORE_URL: "&lt;A href="http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file" target="_blank" rel="nofollow noopener noreferrer"&gt;http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file&lt;/A&gt;"&lt;BR /&gt;ports:&lt;BR /&gt;- "8095:8095"&lt;BR /&gt;links:&lt;BR /&gt;- activemq&lt;/P&gt;&lt;P&gt;transform-core-aio:&lt;BR /&gt;image: alfresco/alfresco-transform-core-aio:2.5.7&lt;BR /&gt;mem_limit: 1536m&lt;BR /&gt;environment:&lt;BR /&gt;JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"&lt;BR /&gt;ACTIVEMQ_URL: "nio://activemq:61616"&lt;BR /&gt;FILE_STORE_URL: "&lt;A href="http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file" target="_blank" rel="nofollow noopener noreferrer"&gt;http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file&lt;/A&gt;"&lt;BR /&gt;ports:&lt;BR /&gt;- "8090:8090"&lt;BR /&gt;links:&lt;BR /&gt;- activemq&lt;/P&gt;&lt;P&gt;shared-file-store:&lt;BR /&gt;image: quay.io/alfresco/alfresco-shared-file-store:0.16.1&lt;BR /&gt;mem_limit: 512m&lt;BR /&gt;environment:&lt;BR /&gt;JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"&lt;BR /&gt;scheduler.content.age.millis: 86400000&lt;BR /&gt;scheduler.cleanup.interval: 86400000&lt;BR /&gt;ports:&lt;BR /&gt;- "8099:8099"&lt;BR /&gt;volumes:&lt;BR /&gt;- shared-file-store-volume:/tmp/Alfresco/sfs&lt;/P&gt;&lt;P&gt;share:&lt;BR /&gt;image: quay.io/alfresco/alfresco-share:7.2.0&lt;BR /&gt;mem_limit: 1g&lt;BR /&gt;environment:&lt;BR /&gt;REPO_HOST: "alfresco"&lt;BR /&gt;REPO_PORT: "8080"&lt;BR /&gt;JAVA_OPTS: "&lt;BR /&gt;-XX:MinRAMPercentage=50&lt;BR /&gt;-XX:MaxRAMPercentage=80&lt;BR /&gt;-Dalfresco.host=localhost&lt;BR /&gt;-Dalfresco.port=8080&lt;BR /&gt;-Dalfresco.context=alfresco&lt;BR /&gt;-Dalfresco.protocol=http&lt;BR /&gt;"&lt;/P&gt;&lt;P&gt;postgres:&lt;BR /&gt;image: postgres:13.3&lt;BR /&gt;mem_limit: 512m&lt;BR /&gt;environment:&lt;BR /&gt;- POSTGRES_PASSWORD=alfresco&lt;BR /&gt;- POSTGRES_USER=alfresco&lt;BR /&gt;- POSTGRES_DB=alfresco&lt;BR /&gt;command: postgres -c max_connections=300 -c log_min_messages=LOG&lt;BR /&gt;ports:&lt;BR /&gt;- "5432:5432"&lt;/P&gt;&lt;P&gt;solr6:&lt;BR /&gt;image: alfresco/alfresco-search-services:2.0.3&lt;BR /&gt;mem_limit: 2g&lt;BR /&gt;environment:&lt;BR /&gt;# Solr needs to know how to register itself with Alfresco&lt;BR /&gt;SOLR_ALFRESCO_HOST: "alfresco"&lt;BR /&gt;SOLR_ALFRESCO_PORT: "8080"&lt;BR /&gt;# Alfresco needs to know how to call solr&lt;BR /&gt;SOLR_SOLR_HOST: "solr6"&lt;BR /&gt;SOLR_SOLR_PORT: "8983"&lt;BR /&gt;# Create the default alfresco and archive cores&lt;BR /&gt;SOLR_CREATE_ALFRESCO_DEFAULTS: "alfresco,archive"&lt;BR /&gt;# HTTPS or SECRET&lt;BR /&gt;ALFRESCO_SECURE_COMMS: "secret"&lt;BR /&gt;# SHARED SECRET VALUE&lt;BR /&gt;JAVA_TOOL_OPTIONS: "&lt;BR /&gt;-Dalfresco.secureComms.secret=secret&lt;BR /&gt;"&lt;BR /&gt;ports:&lt;BR /&gt;- "8083:8983" # Browser port&lt;/P&gt;&lt;P&gt;activemq:&lt;BR /&gt;image: alfresco/alfresco-activemq:5.16.4-jre11-centos7&lt;BR /&gt;mem_limit: 1g&lt;BR /&gt;ports:&lt;BR /&gt;- "8161:8161" # Web Console&lt;BR /&gt;- "5672:5672" # AMQP&lt;BR /&gt;- "61616:61616" # OpenWire&lt;BR /&gt;- "61613:61613" # STOMP&lt;/P&gt;&lt;P&gt;digital-workspace:&lt;BR /&gt;image: quay.io/alfresco/alfresco-digital-workspace:2.7.0&lt;BR /&gt;mem_limit: 128m&lt;BR /&gt;environment:&lt;BR /&gt;APP_CONFIG_AUTH_TYPE: "BASIC"&lt;BR /&gt;BASE_PATH: ./&lt;BR /&gt;APP_BASE_SHARE_URL: "&lt;A href="http://localhost:8080/workspace/#/preview/s" target="_blank" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/workspace/#/preview/s&lt;/A&gt;"&lt;/P&gt;&lt;P&gt;control-center:&lt;BR /&gt;image: quay.io/alfresco/alfresco-admin-app:7.2.0&lt;BR /&gt;mem_limit: 128m&lt;BR /&gt;environment:&lt;BR /&gt;APP_CONFIG_PROVIDER: "ECM"&lt;BR /&gt;APP_CONFIG_AUTH_TYPE: "BASIC"&lt;BR /&gt;BASE_PATH: ./&lt;/P&gt;&lt;P&gt;proxy:&lt;BR /&gt;image: alfresco/alfresco-acs-nginx:3.3.0&lt;BR /&gt;mem_limit: 128m&lt;BR /&gt;depends_on:&lt;BR /&gt;- alfresco&lt;BR /&gt;- digital-workspace&lt;BR /&gt;- control-center&lt;BR /&gt;ports:&lt;BR /&gt;- "8080:8080"&lt;BR /&gt;links:&lt;BR /&gt;- digital-workspace&lt;BR /&gt;- alfresco&lt;BR /&gt;- share&lt;BR /&gt;- control-center&lt;/P&gt;&lt;P&gt;sync-service:&lt;BR /&gt;image: quay.io/alfresco/service-sync:3.7.0&lt;BR /&gt;mem_limit: 1g&lt;BR /&gt;environment:&lt;BR /&gt;JAVA_OPTS: "&lt;BR /&gt;-Dsql.db.driver=org.postgresql.Driver&lt;BR /&gt;-Dsql.db.url=jdbc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ostgresql://postgres:5432/alfresco&lt;BR /&gt;-Dsql.db.username=alfresco&lt;BR /&gt;-Dsql.db.password=alfresco&lt;BR /&gt;-Dmessaging.broker.host=activemq&lt;BR /&gt;-Drepo.hostname=alfresco&lt;BR /&gt;-Drepo.port=8080&lt;BR /&gt;-Ddw.server.applicationConnectors[0].type=http&lt;BR /&gt;-XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80&lt;BR /&gt;"&lt;BR /&gt;ports:&lt;BR /&gt;- "9090:9090"&lt;/P&gt;&lt;P&gt;volumes:&lt;BR /&gt;shared-file-store-volume:&lt;BR /&gt;driver_opts:&lt;BR /&gt;type: tmpfs&lt;BR /&gt;device: tmpfs&lt;/P&gt;&lt;/DIV&gt;&lt;NOSCRIPT&gt;&lt;DIV class="lia-spoiler-noscript-container"&gt;&lt;DIV class="lia-spoiler-noscript-content"&gt;version: "2"services:alfresco:image: quay.io/alfresco/alfresco-content-repository:7.2.0mem_limit: 1900menvironment:JAVA_TOOL_OPTIONS: "-Dencryption.keystore.type=JCEKS-Dencryption.cipherAlgorithm=DESede/CBC/PKCS5Padding-Dencryption.keyAlgorithm=DESede-Dencryption.keystore.location=/usr/local/tomcat/shared/classes/alfresco/extension/keystore/keystore-Dmetadata-keystore.password=mp6yc0UD9e-Dmetadata-keystore.aliases=metadata-Dmetadata-keystore.metadata.password=oKIWzVdEdA-Dmetadata-keystore.metadata.algorithm=DESede"JAVA_OPTS: "-Ddb.driver=org.postgresql.Driver-Ddb.username=alfresco-Ddb.password=alfresco-Ddb.url=jdbc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ostgresql://postgres:5432/alfresco-Dsolr.host=solr6-Dsolr.port=8983-Dsolr.secureComms=secret-Dsolr.sharedSecret=secret-Dsolr.base.url=/solr-Dindex.subsystem.name=solr6-Dshare.host=127.0.0.1-Dshare.port=8080-Dalfresco.host=localhost-Dalfresco.port=8080-Daos.baseUrlOverwrite=http://localhost:8080/alfresco/aos-Dmessaging.broker.url=\"failover&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;nio://activemq:61616)?timeout=3000&amp;amp;jms.useCompression=true\"-Ddeployment.method=DOCKER_COMPOSE-Dtransform.service.enabled=true-Dtransform.service.url=http://transform-router:8095-Dsfs.url=http://shared-file-store:8099/-DlocalTransform.core-aio.url=http://transform-core-aio:8090/-Dcsrf.filter.enabled=false-Ddsync.service.uris=http://localhost:9090/alfresco-Dnotification.email.siteinvite=true-Dmail.host=smtp.gmail.com-Dmail.port=465-Dmail.username=********@gmail.com-Dmail.password=**********-Dmail.protocol=smtps-Dmail.smtps.starttls.enable=true-Dmail.smtps.auth=true-Dmail.smtps.starttls.enable=true-Dmail.encoding=UTF-8-Dmail.testmessage.send=true-Dmail.testmessage.to=akakpokophonso@gmail.com-Dmail.testmessage.subject=Email Test-Dmail.testmessage.text= The outbound email service is working correctly-XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"transform-router:mem_limit: 512mimage: quay.io/alfresco/alfresco-transform-router:1.5.2environment:JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"ACTIVEMQ_URL: "nio://activemq:61616"CORE_AIO_URL: "http://transform-core-aio:8090"FILE_STORE_URL: "http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file"ports:- "8095:8095"links:- activemqtransform-core-aio:image: alfresco/alfresco-transform-core-aio:2.5.7mem_limit: 1536menvironment:JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"ACTIVEMQ_URL: "nio://activemq:61616"FILE_STORE_URL: "http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file"ports:- "8090:8090"links:- activemqshared-file-store:image: quay.io/alfresco/alfresco-shared-file-store:0.16.1mem_limit: 512menvironment:JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"scheduler.content.age.millis: 86400000scheduler.cleanup.interval: 86400000ports:- "8099:8099"volumes:- shared-file-store-volume:/tmp/Alfresco/sfsshare:image: quay.io/alfresco/alfresco-share:7.2.0mem_limit: 1genvironment:REPO_HOST: "alfresco"REPO_PORT: "8080"JAVA_OPTS: "-XX:MinRAMPercentage=50-XX:MaxRAMPercentage=80-Dalfresco.host=localhost-Dalfresco.port=8080-Dalfresco.context=alfresco-Dalfresco.protocol=http"postgres:image: postgres:13.3mem_limit: 512menvironment:- POSTGRES_PASSWORD=alfresco- POSTGRES_USER=alfresco- POSTGRES_DB=alfrescocommand: postgres -c max_connections=300 -c log_min_messages=LOGports:- "5432:5432"solr6:image: alfresco/alfresco-search-services:2.0.3mem_limit: 2genvironment:# Solr needs to know how to register itself with AlfrescoSOLR_ALFRESCO_HOST: "alfresco"SOLR_ALFRESCO_PORT: "8080"# Alfresco needs to know how to call solrSOLR_SOLR_HOST: "solr6"SOLR_SOLR_PORT: "8983"# Create the default alfresco and archive coresSOLR_CREATE_ALFRESCO_DEFAULTS: "alfresco,archive"# HTTPS or SECRETALFRESCO_SECURE_COMMS: "secret"# SHARED SECRET VALUEJAVA_TOOL_OPTIONS: "-Dalfresco.secureComms.secret=secret"ports:- "8083:8983" # Browser portactivemq:image: alfresco/alfresco-activemq:5.16.4-jre11-centos7mem_limit: 1gports:- "8161:8161" # Web Console- "5672:5672" # AMQP- "61616:61616" # OpenWire- "61613:61613" # STOMPdigital-workspace:image: quay.io/alfresco/alfresco-digital-workspace:2.7.0mem_limit: 128menvironment:APP_CONFIG_AUTH_TYPE: "BASIC"BASE_PATH: ./APP_BASE_SHARE_URL: "http://localhost:8080/workspace/#/preview/s"control-center:image: quay.io/alfresco/alfresco-admin-app:7.2.0mem_limit: 128menvironment:APP_CONFIG_PROVIDER: "ECM"APP_CONFIG_AUTH_TYPE: "BASIC"BASE_PATH: ./proxy:image: alfresco/alfresco-acs-nginx:3.3.0mem_limit: 128mdepends_on:- alfresco- digital-workspace- control-centerports:- "8080:8080"links:- digital-workspace- alfresco- share- control-centersync-service:image: quay.io/alfresco/service-sync:3.7.0mem_limit: 1genvironment:JAVA_OPTS: "-Dsql.db.driver=org.postgresql.Driver-Dsql.db.url=jdbc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ostgresql://postgres:5432/alfresco-Dsql.db.username=alfresco-Dsql.db.password=alfresco-Dmessaging.broker.host=activemq-Drepo.hostname=alfresco-Drepo.port=8080-Ddw.server.applicationConnectors[0].type=http-XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"ports:- "9090:9090"volumes:shared-file-store-volume:driver_opts:type: tmpfsdevice: tmpfs&lt;/DIV&gt;&lt;/DIV&gt;&lt;/NOSCRIPT&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Jun 2022 09:06:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128868#M34921</guid>
      <dc:creator>Phfirst</dc:creator>
      <dc:date>2022-06-17T09:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128869#M34922</link>
      <description>&lt;P&gt;You docker-compose file look ok. Based on the error it seems lime there is somewhere the config is being overriden.&lt;/P&gt;
&lt;P&gt;"Couldn't connect to host, port:&lt;FONT color="#FF0000"&gt; smtp.example.com, 25&lt;/FONT&gt;; timeout -1; nested exception is: java.net.UnknownHostException: smtp.example.com"&lt;/P&gt;
&lt;P&gt;You are using&amp;nbsp;smtp.gmail.com and&amp;nbsp;465 but error refers to a different host.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No additonal config is needed if you have the properties set. but if you have somehow updated the config via admin tools, then that may be taking precedence.&lt;/P&gt;
&lt;P&gt;See if you somehow update the configs via &lt;A href="https://docs.alfresco.com/content-services/6.2/config/email/#manage-outbound-emails" target="_self" rel="nofollow noopener noreferrer"&gt;admin console, try to match the &lt;SPAN&gt;Hostname&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;and Email Server Port with the same properties you are using in docker-compose.yml file and see if that helps.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 18:02:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128869#M34922</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-06-17T18:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128870#M34923</link>
      <description>&lt;P&gt;I don't know if you are talking about the emails config in the admin console or any other config. I still did not make a config related to emails in the administration console.&lt;/P&gt;&lt;P&gt;However, I made customizations in other places including:&lt;/P&gt;&lt;P&gt;- change of logo in the share interface&lt;/P&gt;&lt;P&gt;- the creation of a personal theme in: &lt;STRONG&gt;/var/lib/docker/overlay2/63ad428db391e61747765f2fd423a0b6535fec89fd53ef58bcc3e0906aa811b3/diff/usr/local/tomcat/webapps/share/themes/&lt;/STRONG&gt; where the other theme folders are also located&lt;/P&gt;&lt;P&gt;- the modification of the css in login.css in: &lt;STRONG&gt;/var/lib/docker/overlay2/63ad428db391e61747765f2fd423a0b6535fec89fd53ef58bcc3e0906aa811b3/diff/usr/local/tomcat/webapps/share/components/guest/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- the creation of a customTheme.xml file in: &lt;STRONG&gt;/var/lib/docker/overlay2/63ad428db391e61747765f2fd423a0b6535fec89fd53ef58bcc3e0906aa811b3/diff/usr/local/tomcat/webapps/share/WEB-INF/classes/alfresco/site-data/themes/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- modification of messages in slingshot.properties in : &lt;STRONG&gt;/var/lib/docker/overlay2/63ad428db391e61747765f2fd423a0b6535fec89fd53ef58bcc3e0906aa811b3/diff/usr/local/tomcat/webapps/share/WEB-INF/classes/alfresco/messages/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- and the modification of the css of the footer.css in: &lt;STRONG&gt;/var/lib/docker/overlay2/63ad428db391e61747765f2fd423a0b6535fec89fd53ef58bcc3e0906aa811b3/diff/usr/local/tomcat/webapps/share/components/footer/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Is it these changes that are causing the settings in docker-compose.yml to not be taken into account?&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jun 2022 08:02:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128870#M34923</guid>
      <dc:creator>Phfirst</dc:creator>
      <dc:date>2022-06-18T08:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128871#M34924</link>
      <description>&lt;P&gt;What i meant that, try updating from admin console once and see if that picks up. Sometimes we play around thing and unknowingly change values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All your share theme changes has no relation to smtp or anything with repo.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jun 2022 10:36:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128871#M34924</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-06-18T10:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128872#M34925</link>
      <description>&lt;P&gt;It is well noted.&lt;BR /&gt;But unfortunately I don't know how to access the administration console in question and how to do ts update.&lt;BR /&gt;Or, do you want to talk about this one bellow (&lt;FONT color="#FF0000"&gt;Alfresco Administration Console (admin only)&lt;/FONT&gt;) ?&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="console admin.png" style="width: 489px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/1540iB25973565E1A474B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jun 2022 14:49:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128872#M34925</guid>
      <dc:creator>Phfirst</dc:creator>
      <dc:date>2022-06-18T14:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128873#M34926</link>
      <description>&lt;P&gt;yes, this the admin console i mentioned. It seems somehow those properties are overriden and that's why it tries to connect to smtp.example.com. You have to investigate that&lt;/P&gt;
&lt;P&gt;As you can see, click on&amp;nbsp; "Alfresco Administration Console" (make sure you are logged in as admin user or have admin previledges). You will find the settings for email configs as stated here:&amp;nbsp;&lt;A href="https://docs.alfresco.com/content-services/latest/config/email/#manage-outbound-emails" target="_blank" rel="noopener nofollow noreferrer"&gt;https://docs.alfresco.com/content-services/latest/config/email/#manage-outbound-emails&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;or connect to Alfresco using jconsole and update the properties via JMX mbeans.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 14:16:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128873#M34926</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-06-21T14:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128874#M34927</link>
      <description>&lt;P&gt;I always thank you for your help.&lt;BR /&gt;When I access the Admin Console, I can't find myself. I do not know in particular how to find the parameters concerned in the file which it is necessary in order to check if they are correct or not as you recommend it to me. (remember that I use Docker).&lt;BR /&gt;Can I find a tutorial to do this? Any other advice or recommendation will also be welcome.&lt;BR /&gt;&lt;BR /&gt;Actually, I'm a newbie and this is my first time to work on Alfresco. And I need your help to get through this, sorry.&lt;BR /&gt;Here is the console interface (in the Templates and messages Console section) :&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dans-admin-console2.png" style="width: 628px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/1543i7ABDB8236A33F8C9/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;And here is the complete output of the help command :&lt;/P&gt;&lt;DIV class="lia-spoiler-container"&gt;&lt;A class="lia-spoiler-link" href="#" rel="nofollow noopener noreferrer"&gt;Spoiler&lt;/A&gt;&lt;NOSCRIPT&gt; (Highlight to read)&lt;/NOSCRIPT&gt;&lt;DIV class="lia-spoiler-border"&gt;&lt;DIV class="lia-spoiler-content"&gt;&lt;P&gt;##&lt;BR /&gt;## Meta commands&lt;BR /&gt;##&lt;/P&gt;&lt;P&gt;ok&amp;gt; help&lt;/P&gt;&lt;P&gt;List this help.&lt;/P&gt;&lt;P&gt;ok&amp;gt; r&lt;/P&gt;&lt;P&gt;Repeat last command.&lt;BR /&gt;&lt;BR /&gt;##&lt;BR /&gt;## Quit / Exit&lt;BR /&gt;##&lt;/P&gt;&lt;P&gt;If running in a web browser, then close this window or tab (and logout from Alfresco Explorer or close the web browser).&lt;BR /&gt;&lt;BR /&gt;If running as a command-line utility, then type 'quit' or 'exit'.&lt;/P&gt;&lt;P&gt;##&lt;BR /&gt;## General Repo Admin Commands&lt;BR /&gt;##&lt;/P&gt;&lt;P&gt;ok&amp;gt; show file &amp;lt;fileClassPath&amp;gt;&lt;/P&gt;&lt;P&gt;Output the contents of the file located at &amp;lt;fileClassPath&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;fileClassPath&amp;gt; class path to a file&lt;/P&gt;&lt;P&gt;e.g. show file alfresco/extension/xxxModel.xml&lt;BR /&gt;e.g. show file alfresco/extension/yyy-messages.properties&lt;BR /&gt;&lt;BR /&gt;ok&amp;gt; show file-list &amp;lt;filesClassPath&amp;gt;&lt;/P&gt;&lt;P&gt;Show list of files located at &amp;lt;filesClassPath&amp;gt; with first match being listed for each filename.&lt;/P&gt;&lt;P&gt;&amp;lt;filesClassPath&amp;gt; class path to a list of files. Wildcard * is allowed. For example, to see&lt;BR /&gt;a list of message resource bundles that would be loaded, use: /path1/path2/bundlename*.properties&lt;/P&gt;&lt;P&gt;e.g. show file-list alfresco/extension/*&lt;BR /&gt;e.g. show file-list alfresco/extension/*Model.xml&lt;BR /&gt;e.g. show file-list alfresco/extension/zzz-messages*.properties&lt;BR /&gt;&lt;BR /&gt;##&lt;BR /&gt;## Model Admin Commands&lt;BR /&gt;##&lt;/P&gt;&lt;P&gt;ok&amp;gt; show models&lt;/P&gt;&lt;P&gt;Show deployed models - that are stored in the repository data dictionary.&lt;/P&gt;&lt;P&gt;ok&amp;gt; deploy model &amp;lt;fileClassPath&amp;gt;&lt;/P&gt;&lt;P&gt;Upload model to repository and load into runtime data dictionary. This will also&lt;BR /&gt;set the repository model as active.&lt;BR /&gt;&lt;BR /&gt;If a model is already deployed then it will be updated and re-deployed.&lt;/P&gt;&lt;P&gt;e.g. deploy model alfresco/extension/exampleModel.xml&lt;/P&gt;&lt;P&gt;ok&amp;gt; undeploy model &amp;lt;modelFileName&amp;gt;&lt;/P&gt;&lt;P&gt;Permanently delete model from repository (all versions) and unload from runtime data dictionary.&lt;/P&gt;&lt;P&gt;e.g. undeploy model exampleModel.xml&lt;/P&gt;&lt;P&gt;ok&amp;gt; activate model &amp;lt;modelFileName&amp;gt;&lt;/P&gt;&lt;P&gt;Set repository model to active and load into runtime data dictionary.&lt;BR /&gt;&lt;BR /&gt;e.g. activate model exampleModel.xml&lt;BR /&gt;&lt;BR /&gt;ok&amp;gt; deactivate model &amp;lt;modelFileName&amp;gt;&lt;/P&gt;&lt;P&gt;Set repository model to inactive and unload from runtime data dictionary.&lt;BR /&gt;&lt;BR /&gt;e.g. deactivate model exampleModel.xml&lt;BR /&gt;&lt;BR /&gt;##&lt;BR /&gt;## Message Admin Commands&lt;BR /&gt;##&lt;/P&gt;&lt;P&gt;ok&amp;gt; show messages&lt;/P&gt;&lt;P&gt;Show deployed message resource bundles - that are stored in the repository data dictionary.&lt;/P&gt;&lt;P&gt;ok&amp;gt; deploy messages &amp;lt;resourceBundleClassPath&amp;gt;&lt;/P&gt;&lt;P&gt;Upload message resource bundle to repository and runtime message service.&lt;/P&gt;&lt;P&gt;e.g. deploy messages alfresco/extension/lifecycle-messages&lt;BR /&gt;&lt;BR /&gt;ok&amp;gt; undeploy messages &amp;lt;resourceBundleBaseName&amp;gt;&lt;/P&gt;&lt;P&gt;Remove message resource bundle from repository and from runtime message service.&lt;BR /&gt;&lt;BR /&gt;e.g. undeploy messages lifecycle-messages&lt;BR /&gt;&lt;BR /&gt;ok&amp;gt; reload messages &amp;lt;resourceBundleBaseName&amp;gt;&lt;/P&gt;&lt;P&gt;Reload message resource bundle from repository into runtime message service.&lt;BR /&gt;&lt;BR /&gt;e.g. reload messages lifecycle-messages&lt;/P&gt;&lt;P&gt;##&lt;BR /&gt;## end&lt;BR /&gt;##&lt;/P&gt;&lt;/DIV&gt;&lt;NOSCRIPT&gt;&lt;DIV class="lia-spoiler-noscript-container"&gt;&lt;DIV class="lia-spoiler-noscript-content"&gt;#### Meta commands##ok&amp;gt; helpList this help.ok&amp;gt; rRepeat last command.#### Quit / Exit##If running in a web browser, then close this window or tab (and logout from Alfresco Explorer or close the web browser).If running as a command-line utility, then type 'quit' or 'exit'.#### General Repo Admin Commands##ok&amp;gt; show file &amp;lt;fileClassPath&amp;gt;Output the contents of the file located at &amp;lt;fileClassPath&amp;gt;.&amp;lt;fileClassPath&amp;gt; class path to a filee.g. show file alfresco/extension/xxxModel.xmle.g. show file alfresco/extension/yyy-messages.propertiesok&amp;gt; show file-list &amp;lt;filesClassPath&amp;gt;Show list of files located at &amp;lt;filesClassPath&amp;gt; with first match being listed for each filename.&amp;lt;filesClassPath&amp;gt; class path to a list of files. Wildcard * is allowed. For example, to seea list of message resource bundles that would be loaded, use: /path1/path2/bundlename*.propertiese.g. show file-list alfresco/extension/*e.g. show file-list alfresco/extension/*Model.xmle.g. show file-list alfresco/extension/zzz-messages*.properties#### Model Admin Commands##ok&amp;gt; show modelsShow deployed models - that are stored in the repository data dictionary.ok&amp;gt; deploy model &amp;lt;fileClassPath&amp;gt;Upload model to repository and load into runtime data dictionary. This will alsoset the repository model as active.If a model is already deployed then it will be updated and re-deployed.e.g. deploy model alfresco/extension/exampleModel.xmlok&amp;gt; undeploy model &amp;lt;modelFileName&amp;gt;Permanently delete model from repository (all versions) and unload from runtime data dictionary.e.g. undeploy model exampleModel.xmlok&amp;gt; activate model &amp;lt;modelFileName&amp;gt;Set repository model to active and load into runtime data dictionary.e.g. activate model exampleModel.xmlok&amp;gt; deactivate model &amp;lt;modelFileName&amp;gt;Set repository model to inactive and unload from runtime data dictionary.e.g. deactivate model exampleModel.xml#### Message Admin Commands##ok&amp;gt; show messagesShow deployed message resource bundles - that are stored in the repository data dictionary.ok&amp;gt; deploy messages &amp;lt;resourceBundleClassPath&amp;gt;Upload message resource bundle to repository and runtime message service.e.g. deploy messages alfresco/extension/lifecycle-messagesok&amp;gt; undeploy messages &amp;lt;resourceBundleBaseName&amp;gt;Remove message resource bundle from repository and from runtime message service.e.g. undeploy messages lifecycle-messagesok&amp;gt; reload messages &amp;lt;resourceBundleBaseName&amp;gt;Reload message resource bundle from repository into runtime message service.e.g. reload messages lifecycle-messages#### end##&lt;/DIV&gt;&lt;/DIV&gt;&lt;/NOSCRIPT&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 22 Jun 2022 10:27:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128874#M34927</guid>
      <dc:creator>Phfirst</dc:creator>
      <dc:date>2022-06-22T10:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Configure mail service on Alfresco Community 7.2 installed using Docker Compose</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128875#M34928</link>
      <description>&lt;P&gt;Please, someone was able to find an answer to my problem or another way to solving ?&lt;/P&gt;&lt;P&gt;I am trying to start the the instal again to see if there will be a change.&lt;/P&gt;&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 09:25:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configure-mail-service-on-alfresco-community-7-2-installed-using/m-p/128875#M34928</guid>
      <dc:creator>Phfirst</dc:creator>
      <dc:date>2022-06-29T09:25:59Z</dc:date>
    </item>
  </channel>
</rss>

