Configuring Arbortext Publishing Engine > Setting Configuration Parameters > Specifying Queues > Configuring a Notifier > Sample Notifier
  
Sample Notifier
In the e3config.xml file, a sample notifier for email has been configured in a commented section. Look for:
<Notifier class="com.arbortext.e3.queue.MailNotifier" id="notifier1">
<Parameter name="mail.host" value="mailhost.yourcompany.com" />
<Parameter name="mail.from" value="test@yourcompany.com" />
<Parameter name="target-states" value="complete,processing" />
<Parameter name="request-parameter" value="queue-email" />
</Notifier>
You would remove the comment markers and replace the values with the mail server information for your site. For example:
<Notifier class="com.arbortext.e3.queue.MailNotifier" id="notifier1">
<Parameter name="mail.host" value="int-mail.acme.com" />
<Parameter name="mail.from" value="job-update@acme.com" />
<Parameter name="target-states" value="complete,queued" />
<Parameter name="request-parameter" value="queue-email" />
</Notifier>
Then, be sure to set the compositionEmailPolicy parameter (see The Global Queuing Parameters for information.):
Parameter name="com.arbortext.e3.compositionEmailPolicy"
value="queue-email" />
The notifier would respond to a query that included a parameter like the following:
name="queue-mail" value="user@host"
Where user@host is the email where the notification should be sent. This query can originate from a
Arbortext Editor clients would supply this value through their Notification Email Address in Tools > Preferences > Publishing Engine. The Notification Email Address is included in the publishing request.