default jobs scheduling change

This commit is contained in:
yuri
2018-01-29 17:14:12 +02:00
parent 72149851cf
commit f885333310
2 changed files with 13 additions and 13 deletions
@@ -66,8 +66,8 @@
"asc": true
},
"jobSchedulingMap": {
"CheckInboundEmails": "*/4 * * * *",
"CheckEmailAccounts": "*/5 * * * *",
"CheckInboundEmails": "*/2 * * * *",
"CheckEmailAccounts": "*/1 * * * *",
"SendEmailReminders": "*/2 * * * *",
"Cleanup": "1 1 * * 0",
"AuthTokenControl": "*/6 * * * *",
+11 -11
View File
@@ -33,57 +33,57 @@ return array(
'name' => 'Case-to-Email auto-reply',
'subject' => 'Case has been created',
'body' => '<p>{Person.name},</p><p>Case \'{Case.name}\' has been created with number {Case.number} and assigned to {User.name}.</p>',
'isHtml ' => '1',
),
'isHtml ' => '1'
)
),
'ScheduledJob' => array(
array(
'name' => 'Check Group Email Accounts',
'job' => 'CheckInboundEmails',
'status' => 'Active',
'scheduling' => '*/4 * * * *',
'scheduling' => '*/2 * * * *'
),
array(
'name' => 'Check Personal Email Accounts',
'job' => 'CheckEmailAccounts',
'status' => 'Active',
'scheduling' => '*/5 * * * *',
'scheduling' => '*/1 * * * *'
),
array(
'name' => 'Send Email Reminders',
'job' => 'SendEmailReminders',
'status' => 'Active',
'scheduling' => '*/2 * * * *',
'scheduling' => '*/2 * * * *'
),
array(
'name' => 'Send Email Notifications',
'job' => 'SendEmailNotifications',
'status' => 'Active',
'scheduling' => '*/2 * * * *',
'scheduling' => '*/2 * * * *'
),
array(
'name' => 'Clean-up',
'job' => 'Cleanup',
'status' => 'Active',
'scheduling' => '1 1 * * 0',
'scheduling' => '1 1 * * 0'
),
array(
'name' => 'Send Mass Emails',
'job' => 'ProcessMassEmail',
'status' => 'Active',
'scheduling' => '15 * * * *',
'scheduling' => '15 * * * *'
),
array(
'name' => 'Auth Token Control',
'job' => 'AuthTokenControl',
'status' => 'Active',
'scheduling' => '*/6 * * * *',
'scheduling' => '*/6 * * * *'
),
array(
'name' => 'Control Knowledge Base Article Status',
'job' => 'ControlKnowledgeBaseArticleStatus',
'status' => 'Active',
'scheduling' => '10 1 * * *',
'scheduling' => '10 1 * * *'
)
),
)
);