- 
                Notifications
    
You must be signed in to change notification settings  - Fork 29
 
Configuring an SMTP internal server
        Angel Borroy edited this page Sep 12, 2018 
        ·
        1 revision
      
    Following instructions describe how to configure a new SMTP service inside the Docker Machine to provide Outbound Email features in Alfresco Repository.
Default configuration is an open relay that rely on docker networking for protection.
- Add SMTP service to docker-compose.yml
 
    smtp:
        image: mwader/postfix-relay
        networks:
          - internal
- Add configuration properties for Alfresco Repository at alfresco-global.properties
 
mail.host=smtp
mail.port=25 
mail.username=anonymous 
mail.password=
mail.protocol=smtp 
mail.smtps.starttls.enable=false 
mail.smtps.auth=false