mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-14 04:16:33 +00:00
c46d524d72
- Change from dropdown to show outbound accounts -- show the name of the accounts instead of the from name - Change compose email send to allow sending from outbounds - Add reply to fields to outbound email module - On outbound email account toggle fields for system-override emails - Allow sending using system-override
628 lines
22 KiB
PHP
628 lines
22 KiB
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
* SugarCRM Community Edition is a customer relationship management program developed by
|
|
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
|
|
*
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
|
|
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero General Public License version 3 as published by the
|
|
* Free Software Foundation with the addition of the following permission added
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License along with
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA.
|
|
*
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU Affero General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
|
*/
|
|
$dictionary["OutboundEmailAccounts"] = [
|
|
'table' => 'outbound_email',
|
|
'audited' => true,
|
|
'inline_edit' => false,
|
|
'massupdate' => false,
|
|
'duplicate_merge' => false,
|
|
'fields' => [
|
|
'id' => [
|
|
'name' => 'id',
|
|
'vname' => 'LBL_ID',
|
|
'type' => 'id',
|
|
'required' => true,
|
|
'comment' => 'Unique identifier',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'name' => [
|
|
'name' => 'name',
|
|
'vname' => 'LBL_NAME',
|
|
'type' => 'name',
|
|
'link' => true,
|
|
'dbType' => 'varchar',
|
|
'len' => 255,
|
|
'unified_search' => true,
|
|
'full_text_search' =>
|
|
[
|
|
'boost' => 3,
|
|
],
|
|
'required' => true,
|
|
'importable' => 'required',
|
|
'duplicate_merge' => 'enabled',
|
|
'merge_filter' => 'selected',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'type' => [
|
|
'name' => 'type',
|
|
'vname' => 'LBL_TYPE',
|
|
'type' => 'enum',
|
|
'len' => 15,
|
|
'display' => 'readonly',
|
|
'options' => 'dom_outbound_email_account_types',
|
|
'required' => true,
|
|
'default' => 'user',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'user_id' => [
|
|
'name' => 'user_id',
|
|
'vname' => 'LBL_USER_ID',
|
|
'type' => 'id',
|
|
'required' => false,
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'owner' => [
|
|
'name' => 'owner',
|
|
'type' => 'link',
|
|
'relationship' => 'outbound_email_owner_user',
|
|
'link_type' => 'one',
|
|
'source' => 'non-db',
|
|
'vname' => 'LBL_OWNER',
|
|
'duplicate_merge' => 'disabled',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'owner_name' => [
|
|
'name' => 'owner_name',
|
|
'rname' => 'name',
|
|
'id_name' => 'user_id',
|
|
'vname' => 'LBL_OWNER_NAME',
|
|
'join_name' => 'owner',
|
|
'type' => 'relate',
|
|
'link' => 'owner',
|
|
'table' => 'users',
|
|
'isnull' => 'true',
|
|
'module' => 'Users',
|
|
'dbType' => 'varchar',
|
|
'len' => '255',
|
|
'source' => 'non-db',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'smtp_from_name' => [
|
|
'name' => 'smtp_from_name',
|
|
'vname' => 'LBL_SMTP_FROM_NAME',
|
|
'type' => 'varchar',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'smtp_from_addr' => [
|
|
'name' => 'smtp_from_addr',
|
|
'vname' => 'LBL_SMTP_FROM_ADDR',
|
|
'type' => 'varchar',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'reply_to_name' => [
|
|
'name' => 'reply_to_name',
|
|
'vname' => 'LBL_REPLY_TO_NAME',
|
|
'type' => 'varchar',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'reply_to_addr' => [
|
|
'name' => 'reply_to_addr',
|
|
'vname' => 'LBL_REPLY_TO_ADDR',
|
|
'type' => 'varchar',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'signature' => [
|
|
'name' => 'signature',
|
|
'vname' => 'LBL_SIGNATURE',
|
|
'type' => 'wysiwyg',
|
|
'dbType' => 'text',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'mail_sendtype' => [
|
|
'name' => 'mail_sendtype',
|
|
'vname' => 'LBL_MAIL_SENDTYPE',
|
|
'type' => 'varchar',
|
|
'len' => 8,
|
|
'required' => true,
|
|
'default' => 'SMTP',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'mail_smtptype' => [
|
|
'name' => 'mail_smtptype',
|
|
'vname' => 'LBL_MAIL_SENDTYPE',
|
|
'type' => 'varchar',
|
|
'len' => 20,
|
|
'required' => true,
|
|
'default' => 'other',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'mail_smtpserver' => [
|
|
'name' => 'mail_smtpserver',
|
|
'vname' => 'LBL_MAIL_SMTPSERVER',
|
|
'type' => 'varchar',
|
|
'len' => 100,
|
|
'required' => false,
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'mail_smtpport' => [
|
|
'name' => 'mail_smtpport',
|
|
'vname' => 'LBL_MAIL_SMTPPORT',
|
|
'type' => 'varchar',
|
|
'len' => 5,
|
|
'default' => 25,
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'mail_smtpuser' => [
|
|
'name' => 'mail_smtpuser',
|
|
'vname' => 'LBL_MAIL_SMTPUSER',
|
|
'type' => 'varchar',
|
|
'len' => 100,
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'mail_smtppass' => [
|
|
'name' => 'mail_smtppass',
|
|
'vname' => 'LBL_MAIL_SMTPPASS',
|
|
'type' => 'password',
|
|
'dbType' => 'varchar',
|
|
'len' => 100,
|
|
'display' => 'writeonly',
|
|
'required' => false,
|
|
'sensitive' => true,
|
|
'api-visible' => false,
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'mail_smtpauth_req' => [
|
|
'name' => 'mail_smtpauth_req',
|
|
'vname' => 'LBL_MAIL_SMTPAUTH_REQ',
|
|
'type' => 'bool',
|
|
'default' => 0,
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'mail_smtpssl' => [
|
|
'name' => 'mail_smtpssl',
|
|
'vname' => 'LBL_MAIL_SMTPSSL',
|
|
'type' => 'enum',
|
|
'options' => 'email_settings_for_ssl',
|
|
'len' => 1,
|
|
'default' => 0,
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'date_entered' => [
|
|
'name' => 'date_entered',
|
|
'vname' => 'LBL_DATE_ENTERED',
|
|
'type' => 'datetime',
|
|
'group' => 'created_by_name',
|
|
'comment' => 'Date record created',
|
|
'enable_range_search' => true,
|
|
'options' => 'date_range_search_dom',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'date_modified' => [
|
|
'name' => 'date_modified',
|
|
'vname' => 'LBL_DATE_MODIFIED',
|
|
'type' => 'datetime',
|
|
'group' => 'modified_by_name',
|
|
'comment' => 'Date record last modified',
|
|
'enable_range_search' => true,
|
|
'options' => 'date_range_search_dom',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'modified_user_id' => [
|
|
'name' => 'modified_user_id',
|
|
'rname' => 'user_name',
|
|
'id_name' => 'modified_user_id',
|
|
'vname' => 'LBL_MODIFIED',
|
|
'type' => 'assigned_user_name',
|
|
'table' => 'users',
|
|
'isnull' => 'false',
|
|
'group' => 'modified_by_name',
|
|
'dbType' => 'id',
|
|
'reportable' => true,
|
|
'comment' => 'User who last modified record',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'modified_by_name' => [
|
|
'name' => 'modified_by_name',
|
|
'vname' => 'LBL_MODIFIED_NAME',
|
|
'type' => 'relate',
|
|
'reportable' => false,
|
|
'source' => 'non-db',
|
|
'rname' => 'user_name',
|
|
'table' => 'users',
|
|
'id_name' => 'modified_user_id',
|
|
'module' => 'Users',
|
|
'link' => 'modified_user_link',
|
|
'duplicate_merge' => 'disabled',
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'created_by' => [
|
|
'name' => 'created_by',
|
|
'rname' => 'user_name',
|
|
'id_name' => 'modified_user_id',
|
|
'vname' => 'LBL_CREATED',
|
|
'type' => 'assigned_user_name',
|
|
'table' => 'users',
|
|
'isnull' => 'false',
|
|
'dbType' => 'id',
|
|
'group' => 'created_by_name',
|
|
'comment' => 'User who created record',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'created_by_name' => [
|
|
'name' => 'created_by_name',
|
|
'vname' => 'LBL_CREATED',
|
|
'type' => 'relate',
|
|
'reportable' => false,
|
|
'link' => 'created_by_link',
|
|
'rname' => 'user_name',
|
|
'source' => 'non-db',
|
|
'table' => 'users',
|
|
'id_name' => 'created_by',
|
|
'module' => 'Users',
|
|
'duplicate_merge' => 'disabled',
|
|
'importable' => 'false',
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'deleted' => [
|
|
'name' => 'deleted',
|
|
'vname' => 'LBL_DELETED',
|
|
'type' => 'bool',
|
|
'default' => '0',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
'comment' => 'Record deletion indicator',
|
|
],
|
|
'created_by_link' => [
|
|
'name' => 'created_by_link',
|
|
'type' => 'link',
|
|
'relationship' => 'outbound_email_created_by',
|
|
'vname' => 'LBL_CREATED_USER',
|
|
'link_type' => 'one',
|
|
'module' => 'Users',
|
|
'bean_name' => 'User',
|
|
'source' => 'non-db',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'modified_user_link' => [
|
|
'name' => 'modified_user_link',
|
|
'type' => 'link',
|
|
'relationship' => 'outbound_email_modified_user',
|
|
'vname' => 'LBL_MODIFIED_USER',
|
|
'link_type' => 'one',
|
|
'module' => 'Users',
|
|
'bean_name' => 'User',
|
|
'source' => 'non-db',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'assigned_user_id' => [
|
|
'name' => 'assigned_user_id',
|
|
'rname' => 'user_name',
|
|
'id_name' => 'assigned_user_id',
|
|
'vname' => 'LBL_ASSIGNED_TO_ID',
|
|
'group' => 'assigned_user_name',
|
|
'type' => 'relate',
|
|
'table' => 'users',
|
|
'module' => 'Users',
|
|
'isnull' => 'false',
|
|
'dbType' => 'id',
|
|
'comment' => 'User ID assigned to record',
|
|
'duplicate_merge' => 'disabled',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'assigned_user_name' => [
|
|
'name' => 'assigned_user_name',
|
|
'link' => 'assigned_user_link',
|
|
'vname' => 'LBL_ASSIGNED_TO_NAME',
|
|
'rname' => 'user_name',
|
|
'type' => 'relate',
|
|
'source' => 'non-db',
|
|
'table' => 'users',
|
|
'id_name' => 'assigned_user_id',
|
|
'module' => 'Users',
|
|
'duplicate_merge' => 'disabled',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'assigned_user_link' => [
|
|
'name' => 'assigned_user_link',
|
|
'type' => 'link',
|
|
'relationship' => 'outbound_email_assigned_user',
|
|
'vname' => 'LBL_ASSIGNED_TO_USER',
|
|
'link_type' => 'one',
|
|
'module' => 'Users',
|
|
'bean_name' => 'User',
|
|
'source' => 'non-db',
|
|
'duplicate_merge' => 'enabled',
|
|
'rname' => 'user_name',
|
|
'id_name' => 'assigned_user_id',
|
|
'table' => 'users',
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'password_change' => [
|
|
'required' => false,
|
|
'name' => 'password_change',
|
|
'vname' => 'LBL_PASSWORD',
|
|
'type' => 'function',
|
|
'source' => 'non-db',
|
|
'no_default' => false,
|
|
'comments' => '',
|
|
'help' => '',
|
|
'duplicate_merge' => 'disabled',
|
|
'duplicate_merge_dom_value' => '0',
|
|
'audited' => false,
|
|
'merge_filter' => 'disabled',
|
|
'len' => '255',
|
|
'size' => '20',
|
|
'function' => [
|
|
'name' => 'OutboundEmailAccounts::getPasswordChange',
|
|
'returns' => 'html',
|
|
'include' => 'modules/OutboundEmailAccounts/OutboundEmailAccounts.php'
|
|
],
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
'sent_test_email_btn' => [
|
|
'required' => false,
|
|
'name' => 'sent_test_email_btn',
|
|
'vname' => 'LBL_SEND_TEST_EMAIL',
|
|
'type' => 'function',
|
|
'source' => 'non-db',
|
|
'no_default' => false,
|
|
'comments' => '',
|
|
'help' => '',
|
|
'duplicate_merge' => 'disabled',
|
|
'duplicate_merge_dom_value' => '0',
|
|
'audited' => false,
|
|
'merge_filter' => 'disabled',
|
|
'len' => '255',
|
|
'size' => '20',
|
|
'function' => [
|
|
'name' => 'OutboundEmailAccounts::getSendTestEmailBtn',
|
|
'returns' => 'html',
|
|
'include' => 'modules/OutboundEmailAccounts/OutboundEmailAccounts.php'
|
|
],
|
|
'reportable' => false,
|
|
'massupdate' => false,
|
|
'inline_edit' => false,
|
|
'importable' => false,
|
|
'exportable' => false,
|
|
'unified_search' => false,
|
|
],
|
|
],
|
|
'relationships' => [
|
|
'outbound_email_owner_user' => [
|
|
'lhs_module' => 'Users',
|
|
'lhs_table' => 'users',
|
|
'lhs_key' => 'id',
|
|
'rhs_module' => 'OutboundEmailAccounts',
|
|
'rhs_table' => 'outbound_email',
|
|
'rhs_key' => 'user_id',
|
|
'relationship_type' => 'one-to-many'
|
|
],
|
|
'outbound_email_modified_user' => [
|
|
'lhs_module' => 'Users',
|
|
'lhs_table' => 'users',
|
|
'lhs_key' => 'id',
|
|
'rhs_module' => 'OutboundEmailAccounts',
|
|
'rhs_table' => 'outbound_email',
|
|
'rhs_key' => 'modified_user_id',
|
|
'relationship_type' => 'one-to-many',
|
|
],
|
|
'outbound_email_created_by' => [
|
|
'lhs_module' => 'Users',
|
|
'lhs_table' => 'users',
|
|
'lhs_key' => 'id',
|
|
'rhs_module' => 'OutboundEmailAccounts',
|
|
'rhs_table' => 'outbound_email',
|
|
'rhs_key' => 'created_by',
|
|
'relationship_type' => 'one-to-many',
|
|
],
|
|
'outbound_email_assigned_user' => [
|
|
'lhs_module' => 'Users',
|
|
'lhs_table' => 'users',
|
|
'lhs_key' => 'id',
|
|
'rhs_module' => 'OutboundEmailAccounts',
|
|
'rhs_table' => 'outbound_email',
|
|
'rhs_key' => 'assigned_user_id',
|
|
'relationship_type' => 'one-to-many',
|
|
],
|
|
],
|
|
'optimistic_locking' => true,
|
|
'unified_search' => false,
|
|
'indices' => [
|
|
'id' => [
|
|
'name' => 'outbound_email_pk',
|
|
'type' => 'primary',
|
|
'fields' => [
|
|
0 => 'id',
|
|
],
|
|
],
|
|
],
|
|
'custom_fields' => false,
|
|
];
|
|
|
|
VardefManager::createVardef('OutboundEmailAccounts', 'OutboundEmailAccounts', ['security_groups']);
|