diff --git a/application/Espo/Resources/metadata/entityDefs/ScheduledJob.json b/application/Espo/Resources/metadata/entityDefs/ScheduledJob.json index 74db6ff151..6cb3d2137a 100644 --- a/application/Espo/Resources/metadata/entityDefs/ScheduledJob.json +++ b/application/Espo/Resources/metadata/entityDefs/ScheduledJob.json @@ -66,8 +66,8 @@ "asc": true }, "jobSchedulingMap": { - "CheckInboundEmails": "*/4 * * * *", - "CheckEmailAccounts": "*/5 * * * *", + "CheckInboundEmails": "*/2 * * * *", + "CheckEmailAccounts": "*/1 * * * *", "SendEmailReminders": "*/2 * * * *", "Cleanup": "1 1 * * 0", "AuthTokenControl": "*/6 * * * *", diff --git a/install/core/afterInstall/records.php b/install/core/afterInstall/records.php index 74fa0e0270..5ec8fd6864 100644 --- a/install/core/afterInstall/records.php +++ b/install/core/afterInstall/records.php @@ -33,57 +33,57 @@ return array( 'name' => 'Case-to-Email auto-reply', 'subject' => 'Case has been created', 'body' => '

{Person.name},

Case \'{Case.name}\' has been created with number {Case.number} and assigned to {User.name}.

', - '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 * * *' ) - ), + ) ); \ No newline at end of file