To deploy the Outlook Integration T-Engine with the Transform Service, you'll need to update your Docker Compose file to include the Outlook T-Engine.
Note
While Docker Compose is often used for production deployments, the Docker Compose file provided is recommended for development and test environments only. Customers are expected to adapt this file to their own requirements, if they intend to use Docker Compose to deploy a production environment.
-
Add Outlook Integration T-Engine container to your
docker-compose.yamlfile:transform-outlook: image: quay.io/alfresco/transform-outlook:1.0.0 mem_limit: 2g environment: JAVA_OPTS: " -Xms256m -Xmx512m" ACTIVEMQ_URL: "nio://activemq:61616" ACTIVEMQ_USER: "admin" ACTIVEMQ_PASSWORD: "admin" FILE_STORE_URL: "http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file" ports: - 8091:8090 links: - activemq -
Add the following
JAVA_OPTSproperty to thealfrescocontainer:-DlocalTransform.transform-outlook.url=http://transform-outlook:8090/ -
If you're using Content Services 6.2.2 (i.e. not 7.x), you'll need to set the following properties in your Docker Compose file:
-Dlegacy.transform.service.enabled=false -Dlocal.transform.service.enabled=trueNote
If these settings are missing for Content Services 6.2.2, the transformation of MSG and EML files to PDFs won't work. You can ignore these settings for Content Services 7, as they're already set by default.
See the Content Services documentation - T-Engine configuration for more details. For further development, see Content Transformers and Renditions Extension Points.