@@ -6,8 +6,8 @@ |
||
6 | 6 | * @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com) |
7 | 7 | */ |
8 | 8 | return [ |
9 | - // Auto refresh reminders in header |
|
10 | - 'AUTO_REFRESH_REMINDERS' => true, // Boolean |
|
11 | - // Auto mark notifications as readed after send emails to users |
|
12 | - 'AUTO_MARK_NOTIFICATIONS_READ_AFTER_EMAIL_SEND' => true, // Boolean |
|
9 | + // Auto refresh reminders in header |
|
10 | + 'AUTO_REFRESH_REMINDERS' => true, // Boolean |
|
11 | + // Auto mark notifications as readed after send emails to users |
|
12 | + 'AUTO_MARK_NOTIFICATIONS_READ_AFTER_EMAIL_SEND' => true, // Boolean |
|
13 | 13 | ]; |
@@ -44,8 +44,8 @@ discard block |
||
44 | 44 | $config['reply_mode'] = 1; |
45 | 45 | $config['imap_max_retries'] = 0; |
46 | 46 | $config['imap_params'] = [ |
47 | - // enable this for imap and MS Exchange bug "Kerberos error: Credentials cache file ... not found |
|
48 | - // 'DISABLE_AUTHENTICATOR' => 'GSSAPI' |
|
47 | + // enable this for imap and MS Exchange bug "Kerberos error: Credentials cache file ... not found |
|
48 | + // 'DISABLE_AUTHENTICATOR' => 'GSSAPI' |
|
49 | 49 | ]; |
50 | 50 | // Debug |
51 | 51 | $config['debug_level'] = AppConfig::debug('ROUNDCUBE_DEBUG_LEVEL'); |
@@ -62,16 +62,16 @@ discard block |
||
62 | 62 | $config['temp_dir'] = RCUBE_INSTALL_PATH.'/../../../../cache/mail/'; |
63 | 63 | //Socket context options |
64 | 64 | $config['imap_conn_options'] = [ |
65 | - 'ssl' => [ |
|
66 | - 'verify_peer' => false, |
|
67 | - 'verify_peer_name' => false, |
|
68 | - ], |
|
65 | + 'ssl' => [ |
|
66 | + 'verify_peer' => false, |
|
67 | + 'verify_peer_name' => false, |
|
68 | + ], |
|
69 | 69 | ]; |
70 | 70 | $config['smtp_conn_options'] = [ |
71 | - 'ssl' => [ |
|
72 | - 'verify_peer' => false, |
|
73 | - 'verify_peer_name' => false, |
|
74 | - ], |
|
71 | + 'ssl' => [ |
|
72 | + 'verify_peer' => false, |
|
73 | + 'verify_peer_name' => false, |
|
74 | + ], |
|
75 | 75 | ]; |
76 | 76 | $config['smtp_timeout'] = 5; |
77 | 77 | $config['smtp_helo_host'] = 'YetiForceCRM'; |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * @copyright YetiForce Sp. z o.o |
6 | 6 | * @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com) |
7 | 7 | */ |
8 | -$config['db_dsnw'] = 'mysql://'.$dbconfig['db_username'].':'.$dbconfig['db_password'].'@'.$dbconfig['db_server'].':'.$dbconfig['db_port'].'/'.$dbconfig['db_name']; |
|
8 | +$config['db_dsnw'] = 'mysql://' . $dbconfig['db_username'] . ':' . $dbconfig['db_password'] . '@' . $dbconfig['db_server'] . ':' . $dbconfig['db_port'] . '/' . $dbconfig['db_name']; |
|
9 | 9 | $config['db_prefix'] = 'roundcube_'; |
10 | 10 | $config['default_host'] = ['ssl://imap.gmail.com' => 'ssl://imap.gmail.com']; |
11 | 11 | $config['validate_cert'] = false; |
@@ -58,8 +58,8 @@ discard block |
||
58 | 58 | $config['ldap_debug'] = AppConfig::debug('ROUNDCUBE_LDAP_DEBUG'); |
59 | 59 | $config['smtp_debug'] = AppConfig::debug('ROUNDCUBE_SMTP_DEBUG'); |
60 | 60 | $config['devel_mode'] = AppConfig::debug('ROUNDCUBE_DEVEL_MODE'); |
61 | -$config['log_dir'] = RCUBE_INSTALL_PATH.'/../../../../cache/logs/'; |
|
62 | -$config['temp_dir'] = RCUBE_INSTALL_PATH.'/../../../../cache/mail/'; |
|
61 | +$config['log_dir'] = RCUBE_INSTALL_PATH . '/../../../../cache/logs/'; |
|
62 | +$config['temp_dir'] = RCUBE_INSTALL_PATH . '/../../../../cache/mail/'; |
|
63 | 63 | //Socket context options |
64 | 64 | $config['imap_conn_options'] = [ |
65 | 65 | 'ssl' => [ |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | $config['enable_authres_status_column'] = true; |
82 | 82 | $config['show_statuses'] = 127; |
83 | 83 | //CRM Additional configuration parameters |
84 | -$config['root_directory'] = ROOT_DIRECTORY.DIRECTORY_SEPARATOR; |
|
84 | +$config['root_directory'] = ROOT_DIRECTORY . DIRECTORY_SEPARATOR; |
|
85 | 85 | $config['site_URL'] = $config['public_URL'] = $site_URL; |
86 | 86 | $config['public_URL'] .= strpos($_SERVER['SCRIPT_NAME'], 'public_html/modules/OSSMail') === false ? '' : 'public_html/'; |
87 | 87 | $config['imap_open_add_connection_type'] = true; |
@@ -6,6 +6,6 @@ |
||
6 | 6 | * @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com) |
7 | 7 | */ |
8 | 8 | return [ |
9 | - // Max number of notifications to display, 0 - no limits |
|
10 | - 'MAX_NUMBER_NOTIFICATIONS' => 200, |
|
9 | + // Max number of notifications to display, 0 - no limits |
|
10 | + 'MAX_NUMBER_NOTIFICATIONS' => 200, |
|
11 | 11 | ]; |
@@ -6,12 +6,12 @@ |
||
6 | 6 | * @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com) |
7 | 7 | */ |
8 | 8 | return [ |
9 | - // How long before the renewal date should the status be changed |
|
10 | - // ex. 2 month, 1 day https://secure.php.net/manual/en/datetime.formats.php |
|
11 | - 'RENEWAL_TIME' => '2 month', |
|
12 | - 'SHOW_RELATION_IN_MODAL' => ['relationField' => 'parent_id', 'module' => 'Accounts', 'relatedModule' => ['FInvoice', 'ModComments', 'Calendar', 'Documents']], |
|
13 | - // false, [] - inherit fields, [ label => column name, .. ] |
|
14 | - 'SHOW_HIERARCHY_IN_MODAL' => [], |
|
15 | - // ['class' => '', 'method' => '', 'hierarchy' => ''], |
|
16 | - 'RENEWAL_CUSTOMER_FUNCTION' => [], |
|
9 | + // How long before the renewal date should the status be changed |
|
10 | + // ex. 2 month, 1 day https://secure.php.net/manual/en/datetime.formats.php |
|
11 | + 'RENEWAL_TIME' => '2 month', |
|
12 | + 'SHOW_RELATION_IN_MODAL' => ['relationField' => 'parent_id', 'module' => 'Accounts', 'relatedModule' => ['FInvoice', 'ModComments', 'Calendar', 'Documents']], |
|
13 | + // false, [] - inherit fields, [ label => column name, .. ] |
|
14 | + 'SHOW_HIERARCHY_IN_MODAL' => [], |
|
15 | + // ['class' => '', 'method' => '', 'hierarchy' => ''], |
|
16 | + 'RENEWAL_CUSTOMER_FUNCTION' => [], |
|
17 | 17 | ]; |
@@ -6,43 +6,43 @@ |
||
6 | 6 | * @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com) |
7 | 7 | */ |
8 | 8 | return [ |
9 | - // Limits the number of events displayed on a day. |
|
10 | - // Boolean, Integer. default: false |
|
11 | - 'EVENT_LIMIT' => 10, |
|
12 | - // Show calendar timeline in monthly view |
|
13 | - // false = basicWeek, true = agendaWeek |
|
14 | - 'SHOW_TIMELINE_WEEK' => false, // Boolean |
|
15 | - // Show calendar timeline in day view |
|
16 | - // false = basicDay, true = agendaDay |
|
17 | - 'SHOW_TIMELINE_DAY' => false, // Boolean |
|
18 | - // switch - Switch "To realize" and "History", |
|
19 | - // list - filter list |
|
20 | - 'DASHBOARD_CALENDAR_WIDGET_FILTER_TYPE' => 'list', |
|
21 | - // Show the Event/To Do quick create window after changing the status |
|
22 | - // array - PLL_COMPLETED, PLL_CANCELLED |
|
23 | - 'SHOW_QUICK_CREATE_BY_STATUS' => [], |
|
24 | - // Right calendar panel visible by default |
|
25 | - // true - show right panel, false - hide right panel; |
|
26 | - 'SHOW_RIGHT_PANEL' => true, // Boolean |
|
27 | - // Button referring to the list view that includes filters |
|
28 | - // true - show, false - hide; |
|
29 | - 'SHOW_LIST_BUTTON' => true, // Boolean |
|
30 | - // Show companies and processes in quickcreate |
|
31 | - 'SHOW_COMPANIES_IN_QUICKCREATE' => false, // Boolean |
|
32 | - // Exclude certain days-of-the-week from being displayed. |
|
33 | - // The value is an array of day-of-week indices to hide. Each index is zero-base (Sunday=0) and ranges from 0-6. |
|
34 | - // By default, no days are hidden |
|
35 | - 'HIDDEN_DAYS_IN_CALENDAR_VIEW' => [0, 6], |
|
36 | - // Send mail notification to participants |
|
37 | - 'SEND_REMINDER_INVITATION' => true, // Boolean |
|
38 | - // Auto refresh reminders |
|
39 | - 'AUTO_REFRESH_REMINDERS' => true, // Boolean |
|
40 | - // Display days below the form in quick create |
|
41 | - 'SHOW_DAYS_QUICKCREATE' => true, // Boolean |
|
42 | - // Max number of records to update status in cron |
|
43 | - 'CRON_MAX_NUMBERS_ACTIVITY_STATE' => 5000, |
|
44 | - // Max number of records to update calendar activity fields in related modules (in cron) |
|
45 | - 'CRON_MAX_NUMBERS_ACTIVITY_STATS' => 5000, |
|
46 | - // Show number of current records in record preview for related modules |
|
47 | - 'SHOW_ONLY_CURRENT_RECORDS_COUNT' => false, |
|
9 | + // Limits the number of events displayed on a day. |
|
10 | + // Boolean, Integer. default: false |
|
11 | + 'EVENT_LIMIT' => 10, |
|
12 | + // Show calendar timeline in monthly view |
|
13 | + // false = basicWeek, true = agendaWeek |
|
14 | + 'SHOW_TIMELINE_WEEK' => false, // Boolean |
|
15 | + // Show calendar timeline in day view |
|
16 | + // false = basicDay, true = agendaDay |
|
17 | + 'SHOW_TIMELINE_DAY' => false, // Boolean |
|
18 | + // switch - Switch "To realize" and "History", |
|
19 | + // list - filter list |
|
20 | + 'DASHBOARD_CALENDAR_WIDGET_FILTER_TYPE' => 'list', |
|
21 | + // Show the Event/To Do quick create window after changing the status |
|
22 | + // array - PLL_COMPLETED, PLL_CANCELLED |
|
23 | + 'SHOW_QUICK_CREATE_BY_STATUS' => [], |
|
24 | + // Right calendar panel visible by default |
|
25 | + // true - show right panel, false - hide right panel; |
|
26 | + 'SHOW_RIGHT_PANEL' => true, // Boolean |
|
27 | + // Button referring to the list view that includes filters |
|
28 | + // true - show, false - hide; |
|
29 | + 'SHOW_LIST_BUTTON' => true, // Boolean |
|
30 | + // Show companies and processes in quickcreate |
|
31 | + 'SHOW_COMPANIES_IN_QUICKCREATE' => false, // Boolean |
|
32 | + // Exclude certain days-of-the-week from being displayed. |
|
33 | + // The value is an array of day-of-week indices to hide. Each index is zero-base (Sunday=0) and ranges from 0-6. |
|
34 | + // By default, no days are hidden |
|
35 | + 'HIDDEN_DAYS_IN_CALENDAR_VIEW' => [0, 6], |
|
36 | + // Send mail notification to participants |
|
37 | + 'SEND_REMINDER_INVITATION' => true, // Boolean |
|
38 | + // Auto refresh reminders |
|
39 | + 'AUTO_REFRESH_REMINDERS' => true, // Boolean |
|
40 | + // Display days below the form in quick create |
|
41 | + 'SHOW_DAYS_QUICKCREATE' => true, // Boolean |
|
42 | + // Max number of records to update status in cron |
|
43 | + 'CRON_MAX_NUMBERS_ACTIVITY_STATE' => 5000, |
|
44 | + // Max number of records to update calendar activity fields in related modules (in cron) |
|
45 | + 'CRON_MAX_NUMBERS_ACTIVITY_STATS' => 5000, |
|
46 | + // Show number of current records in record preview for related modules |
|
47 | + 'SHOW_ONLY_CURRENT_RECORDS_COUNT' => false, |
|
48 | 48 | ]; |
@@ -6,20 +6,20 @@ |
||
6 | 6 | * @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com) |
7 | 7 | */ |
8 | 8 | return [ |
9 | - // Address URL to route API |
|
10 | - 'ADDRESS_TO_ROUTE' => 'http://www.yournavigation.org/api/1.0/gosmore.php', |
|
11 | - // Address URL to seaching API |
|
12 | - 'ADDRESS_TO_SEARCH' => 'https://nominatim.openstreetmap.org', |
|
13 | - // Max number to update addresses |
|
14 | - 'CRON_MAX_UPDATED_ADDRESSES' => 1000, |
|
15 | - // Allow modules |
|
16 | - 'ALLOW_MODULES' => ['Accounts', 'Contacts', 'Competition', 'Vendors', 'Partners', 'Leads'], |
|
17 | - 'FIELDS_IN_POPUP' => [ |
|
18 | - 'Accounts' => ['accountname', 'email1', 'phone'], |
|
19 | - 'Leads' => ['company', 'firstname', 'lastname', 'email'], |
|
20 | - 'Partners' => ['subject', 'email'], |
|
21 | - 'Competition' => ['subject', 'email'], |
|
22 | - 'Vendors' => ['vendorname', 'email', 'website'], |
|
23 | - 'Contacts' => ['firstname', 'lastname', 'email', 'phone'], |
|
24 | - ], |
|
9 | + // Address URL to route API |
|
10 | + 'ADDRESS_TO_ROUTE' => 'http://www.yournavigation.org/api/1.0/gosmore.php', |
|
11 | + // Address URL to seaching API |
|
12 | + 'ADDRESS_TO_SEARCH' => 'https://nominatim.openstreetmap.org', |
|
13 | + // Max number to update addresses |
|
14 | + 'CRON_MAX_UPDATED_ADDRESSES' => 1000, |
|
15 | + // Allow modules |
|
16 | + 'ALLOW_MODULES' => ['Accounts', 'Contacts', 'Competition', 'Vendors', 'Partners', 'Leads'], |
|
17 | + 'FIELDS_IN_POPUP' => [ |
|
18 | + 'Accounts' => ['accountname', 'email1', 'phone'], |
|
19 | + 'Leads' => ['company', 'firstname', 'lastname', 'email'], |
|
20 | + 'Partners' => ['subject', 'email'], |
|
21 | + 'Competition' => ['subject', 'email'], |
|
22 | + 'Vendors' => ['vendorname', 'email', 'website'], |
|
23 | + 'Contacts' => ['firstname', 'lastname', 'email', 'phone'], |
|
24 | + ], |
|
25 | 25 | ]; |
@@ -6,6 +6,6 @@ |
||
6 | 6 | * @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com) |
7 | 7 | */ |
8 | 8 | return [ |
9 | - // Block names are added to headers |
|
10 | - 'BLOCK_NAME' => true, |
|
9 | + // Block names are added to headers |
|
10 | + 'BLOCK_NAME' => true, |
|
11 | 11 | ]; |
@@ -6,9 +6,9 @@ |
||
6 | 6 | * @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com) |
7 | 7 | */ |
8 | 8 | return [ |
9 | - // Right calendar panel visible by default |
|
10 | - // true - show right panel, false - hide right panel; |
|
11 | - 'SHOW_RIGHT_PANEL' => true, // Boolean |
|
12 | - // Block creating record if duration exceeds 24 hours |
|
13 | - 'DISALLOW_LONGER_THAN_24_HOURS' => true, |
|
9 | + // Right calendar panel visible by default |
|
10 | + // true - show right panel, false - hide right panel; |
|
11 | + 'SHOW_RIGHT_PANEL' => true, // Boolean |
|
12 | + // Block creating record if duration exceeds 24 hours |
|
13 | + 'DISALLOW_LONGER_THAN_24_HOURS' => true, |
|
14 | 14 | ]; |
@@ -6,6 +6,6 @@ |
||
6 | 6 | * @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com) |
7 | 7 | */ |
8 | 8 | return [ |
9 | - // Add only one mail for multiple recipients, type: boolean |
|
10 | - 'ONE_MAIL_FOR_MULTIPLE_RECIPIENTS' => false, |
|
9 | + // Add only one mail for multiple recipients, type: boolean |
|
10 | + 'ONE_MAIL_FOR_MULTIPLE_RECIPIENTS' => false, |
|
11 | 11 | ]; |