-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscheduledTasks.xml
41 lines (38 loc) · 1.42 KB
/
scheduledTasks.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<!--
* registry/scheduledTasks.xml
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Scheduled tasks registry file.
*
* This file lists all scheduled tasks to be executed by the system.
*
* Note that this functionality requires scheduled task support to be enabled.
* The degree of granularity supported for the task frequency depends on the
* frequency the scheduled task script itself is scheduled to run (as
* configured in cron, for example).
*
* Example task:
*
* <task class="submission.scheduledTask.ReviewReminderTask">
* <descr>Send reviewer reminder emails, once per hour.</descr>
* <frequency minute="0"/>
* </task>
-->
<!DOCTYPE scheduled_tasks SYSTEM "../lib/pkp/dtd/scheduledTasks.dtd">
<scheduled_tasks>
<task class="tasks.ReviewReminder">
<descr>Send automated reminders to reviewers to complete their assignments.</descr>
<frequency hour="0"/>
</task>
<task class="tasks.SubscriptionExpiryReminder">
<descr>Send automated reminders to subscribers regarding their expired/about to expire subscriptions.</descr>
<frequency hour="0"/>
</task>
<task class="tasks.OpenAccessNotification">
<descr>Send automated email to registered readers that have requested to be notified when an issue becomes open access.</descr>
<frequency hour="0"/>
</task>
</scheduled_tasks>