How do you turn off Sitecore ECM processing on CD server?

447 Views Asked by At

We have a CD and CM server configured. We want to configure the CM server to process ECM emails. I cannot find any documentation to turn this off on the CD server.

Does anyone know how to turn this off?

1

There are 1 best solutions below

0
On

Remove the processors from the initialize pipeline and the task agent from the scheduling section of Sitecore.EmailCampaign.config. You can use a patch config:

<pipelines>
  <initialize>
    <processor type="Sitecore.EmailCampaign.Presentation.UI.Pipelines.Loader.InitializePresenterBinder, Sitecore.EmailCampaign.Presentation.UI">
      <patch:delete />
    </processor>
    <processor type="Sitecore.EmailCampaign.Presentation.UI.Pipelines.Loader.ConfigurePresenterBinderContainer, Sitecore.EmailCampaign.Presentation.UI">
      <patch:delete />
    </processor>
  </initialize>
</pipelines>
<scheduling>
  <agent hint="ECM">
    <patch:delete />
  </agent>
</scheduling>

You also need to make sure the module files and a connectionstring to a web service on CM is added in your CD environment. See section 3.4.2 of the Email Campaign Manager Developer Guide for more details.