You can modify the default value in the daily_reminder.xsl template so that you can
receive reminder notifications for documents due within a certain due date. For
example, you can receive reminder notifications only for documents with a due date
in the next three or seven days.
To modify the number of days:
-
Open the TEXTML Administration perspective.
-
Connect to the server and the Content Store that you want to manage.
-
Expand the Content Store's Repository note and browse to
/system/scheduler/templates to locate the
daily_reminder.xsl file.
-
Right-click daily_reminder.xsl and select Check
Out.
-
Open the file in an XML editor.
-
Look for the
<xsl:param name>
element. It looks as
follows:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="1.0" encoding="UTF-16" indent="yes"/>
<xsl:param name="days">5</xsl:param>
<xsl:template match="/tasks">
-
Modify the value of the
<xsl:param
name="days"
>5</xsl:param>
to the
desired value.
For example, if you would like to be notified of documents that are due within three
days enter the value 3; or if you would like to be notified of the
documents due within a week enter a value 7.
-
Save, close, and Check In the file.