Configuring Audience Manager on Presentation Server
The cd_audience_manager.conf.xml is the configuration file for Audience Manager and Outbound E-mail on the Presentation Server.
Procedure
- On a .NET system, navigate to Outbound E-Mail\Presentation System\NET\config and copy the following file to your Tridion installation \config directory:
cd_audience_manager.conf.xml
- On a Java system, navigate to Outbound E-Mail\Presentation System\Java\config and copy the following file to your Tridion installation \classes directory:
cd_audience_manager.conf.xml
- Open
cd_audience_manager.conf.xmlin a text editor: - For Audience Manager, you need to configure your
<ExtendedDetails>:<EmailAddressFieldName>- The name of the extended details field that contains the e-mail address.
<ContactIdentification><Field>-
By default, the extended detail fields
IDENTIFICATION_KEYandIDENTIFICATION_SOURCEare used to uniquely identify Contacts. -
If you use different Contact extended detail fields for your unique index, configure
<Field>elements accordingly.
<Configuration> ... <ExtendedDetails> <EmailAddressFieldName>MAIL</EmailAddressFieldName> <ContactIdentification> <Field>IDENTIFICATION_KEY</Field> <Field>IDENTIFICATION_SOURCE</Field> </ContactIdentification> </ExtendedDetails> </Configuration>Note: If you are running multiple instances of Content Delivery on your ASP.NET Web site, you need to add the following code to your ASPX pages to use separate configuration files for each Web site (on a single line):Tridion.OutboundEmail.ContentDelivery.Utilities. Settings.ConfigFileName = "NameOfConfig.xml"; - Save and close
cd_audience_manager.conf.xml.