Skip to content
Snippets Groups Projects
Commit 2f0fd07c authored by Seamus Lee's avatar Seamus Lee
Browse files

[NFC] Regen after #18624

parent 71898599
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
*
* Generated from xml/schema/CRM/Core/MailSettings.xml
* DO NOT EDIT. Generated by CRM_Core_CodeGen
* (GenCodeChecksum:310f3c60fe656e8ef27a67234d6fa80c)
* (GenCodeChecksum:7ce404283a48da50fceaf69d40c58048)
*/
/**
......@@ -135,6 +135,18 @@ class CRM_Core_DAO_MailSettings extends CRM_Core_DAO {
*/
public $activity_status;
/**
* Enabling this option will have CiviCRM skip any emails that do not have the Case ID or Case Hash so that the system will only process emails that can be placed on case records. Any emails that are not processed will be moved to the ignored folder.
*
* @var bool
*/
public $is_non_case_email_skipped;
/**
* @var bool
*/
public $is_contact_creation_disabled_if_no_match;
/**
* Class constructor.
*/
......@@ -399,6 +411,37 @@ class CRM_Core_DAO_MailSettings extends CRM_Core_DAO {
],
'add' => '4.7',
],
'is_non_case_email_skipped' => [
'name' => 'is_non_case_email_skipped',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Skip emails which do not have a Case ID or Case hash'),
'description' => ts('Enabling this option will have CiviCRM skip any emails that do not have the Case ID or Case Hash so that the system will only process emails that can be placed on case records. Any emails that are not processed will be moved to the ignored folder.'),
'where' => 'civicrm_mail_settings.is_non_case_email_skipped',
'default' => '0',
'table_name' => 'civicrm_mail_settings',
'entity' => 'MailSettings',
'bao' => 'CRM_Core_BAO_MailSettings',
'localizable' => 0,
'html' => [
'type' => 'CheckBox',
],
'add' => '5.31',
],
'is_contact_creation_disabled_if_no_match' => [
'name' => 'is_contact_creation_disabled_if_no_match',
'type' => CRM_Utils_Type::T_BOOLEAN,
'title' => ts('Do not create new contacts when filing emails'),
'where' => 'civicrm_mail_settings.is_contact_creation_disabled_if_no_match',
'default' => '0',
'table_name' => 'civicrm_mail_settings',
'entity' => 'MailSettings',
'bao' => 'CRM_Core_BAO_MailSettings',
'localizable' => 0,
'html' => [
'type' => 'CheckBox',
],
'add' => '5.31',
],
];
CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
}
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment