-
Notifications
You must be signed in to change notification settings - Fork 29
/
defaults.php
502 lines (456 loc) · 13.2 KB
/
defaults.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
<?php
/**
* This file is used to set configuration options to a default value that have
* not been set in the config.php.Each definition of a configuration value must
* be preceeded by 'if(!defined("KEY"))'
*/
require_once(__DIR__ . '/server/includes/core/constants.php');
if(!defined("CONFIG_CHECK")) define("CONFIG_CHECK", TRUE);
if(!defined("CONFIG_CHECK_COOKIES_HTTP")) define("CONFIG_CHECK_COOKIES_HTTP", FALSE);
if(!defined("CONFIG_CHECK_COOKIES_SSL")) define("CONFIG_CHECK_COOKIES_SSL", FALSE);
if(!defined("STATE_FILE_MAX_LIFETIME")) define("STATE_FILE_MAX_LIFETIME", 28*60*60);
if(!defined("UPLOADED_ATTACHMENT_MAX_LIFETIME")) define("UPLOADED_ATTACHMENT_MAX_LIFETIME", 6*60*60);
if(!defined("ENABLE_PUBLIC_FOLDERS")) define("ENABLE_PUBLIC_FOLDERS", true);
/**
* Set to true to give users the option to enable file previewer in their settings
* Set to false to hide the setting and disable file previewer for all users
*/
if(!defined("ENABLE_FILE_PREVIEWER")) define("ENABLE_FILE_PREVIEWER", true);
/**
* Enable iconsets.
*/
if(!defined("ENABLE_ICONSETS")) define("ENABLE_ICONSETS", true);
/**
* Set to true to give users the possiblity to edit and create mail filters on the store
* of other users. The user needs owner permissions on the store and folder permissions on
* the inbox of the other user.
* SECURITY NOTE: This makes it possible for a user to create a filter on a folder for which
* he does not have read permissions to forward e-mail to his own mailbox and read it anyway.
*/
if(!defined("ENABLE_SHARED_RULES")) define("ENABLE_SHARED_RULES", false);
/**
* When set to true, we enable GZIP
*/
if(!defined("ENABLE_RESPONSE_COMPRESSION")) define("ENABLE_RESPONSE_COMPRESSION", true);
/**
* When set to false this disables the filtering of the HTML body.
*/
if(!defined("ENABLE_HTMLBODY_FILTER")) define("ENABLE_HTMLBODY_FILTER", true);
/**
* When set to true this enable the fitlering of the HTML body using DOMPurify.
*/
if(!defined("ENABLE_DOMPURIFY_FILTER")) define("ENABLE_DOMPURIFY_FILTER", true);
/**
* Set to false to enable login with Single Sign-On (SSO) on SSO environments.
*/
if(!defined("ENABLE_REMOTE_USER_LOGIN")) define("ENABLE_REMOTE_USER_LOGIN", true);
/**
* When set to false this disables the welcome screen shown to new users.
*/
if(!defined("ENABLE_WELCOME_SCREEN")) define("ENABLE_WELCOME_SCREEN", true);
/**
* Set to true to disable the "What's new dialog" that will be shown to users to introduce new features.
*/
if(!defined("ENABLE_WHATS_NEW_DIALOG")) define("ENABLE_WHATS_NEW_DIALOG", true);
/**
* By default we won't disable the FULL GAB, as it is a performance option
* which, when enabled, prevents the full GAB to be loaded'
*/
if(!defined("ENABLE_FULL_GAB")) define("ENABLE_FULL_GAB", true);
/**
* Set a maximum number of (search) results for the addressbook
* When more results are found no results will be displayed in the client.
* Set to 0 to disable this feature and show all results.
*/
if(!defined("MAX_GAB_RESULTS")) define("MAX_GAB_RESULTS", 0);
/**
* By default we disable the public contact folders,
* as it may increase address-book loading time.
*/
if(!defined("ENABLE_PUBLIC_CONTACT_FOLDERS")) define("ENABLE_PUBLIC_CONTACT_FOLDERS", false);
/**
* By default we disable the shared contact folders, as it is a performance option
* which, when enabled, may cause delay in loading of address-book
*/
if(!defined("ENABLE_SHARED_CONTACT_FOLDERS")) define("ENABLE_SHARED_CONTACT_FOLDERS", false);
/**
* Limit the amount of members shown in the addressbook details dialog for a distlist. If the list
* is too great the browser will hang loading and rendereing all the items. By default set to 0
* which means it loads all members.
*/
if(!defined("ABITEMDETAILS_MAX_NUM_DISTLIST_MEMBERS")) define("ABITEMDETAILS_MAX_NUM_DISTLIST_MEMBERS", 0);
/**
* Use direct booking by default (books resources directly in the calendar instead of sending a meeting
* request)
*/
if(!defined("ENABLE_DIRECT_BOOKING")) define("ENABLE_DIRECT_BOOKING", true);
/**
* Defines enabled languages
*/
if(!defined("ENABLED_LANGUAGES")) define("ENABLED_LANGUAGES", "bg_BG;ca_ES;da_DK;el_GR;et_EE;fa_IR;gl_ES;hr_HR;ko_KR;lt_LT;pt_PT;si_SI;sv_SE;uk_UA;cs_CZ;de_DE;en_GB;en_US;es_ES;fr_FR;he_IL;it_IT;nl_NL;pt_BR;ru_RU;zh_CN;zh_TW;ja_JP;fi_FI;hu_HU;tr_TR;nb_NO;pl_PL");
/**
* Defines the base URL where the User Manual for WebApp can be found
*/
if(!defined("PLUGIN_WEBAPPMANUAL_URL")) define("PLUGIN_WEBAPPMANUAL_URL", "https://documentation.kopano.io/user_manual_webapp/");
/**
* Defines the domains to which redirection after login is allowed. The redirect url will be read from
* the GET-parameter 'continue'.
*/
if(!defined("REDIRECT_ALLOWED_DOMAINS")) define("REDIRECT_ALLOWED_DOMAINS", '');
/**
* Enable plugins
*/
if(!defined("ENABLE_PLUGINS")) define("ENABLE_PLUGINS", true);
/**
* Defines the plugin directory
*/
if(!defined("PATH_PLUGIN_CONFIG_DIR")) define("PATH_PLUGIN_CONFIG_DIR", PATH_PLUGIN_DIR);
/**
* Enable widgets/today context.
*/
if(!defined("ENABLE_WIDGETS")) define("ENABLE_WIDGETS", true);
/**
* Defines a list of plugins that cannot be disabled by users.
*/
if(!defined("ALWAYS_ENABLED_PLUGINS_LIST")) define("ALWAYS_ENABLED_PLUGINS_LIST", "");
/**
* Enable themes.
*/
if(!defined("ENABLE_THEMES")) define("ENABLE_THEMES", true);
/**
* A theme. When this is not defined or empty or 'default', the default Kopano theme will be loaded.
* The theme should the (directory)name of a installed theme plugin.
*/
if(!defined("THEME")) define("THEME", "");
/**
* Use the classic icons as default iconset
*/
if(!defined("ICONSET")) define("ICONSET", "breeze");
/**
* Disable/enabled advanced settings
*/
if(!defined("ENABLE_ADVANCED_SETTINGS")) define("ENABLE_ADVANCED_SETTINGS", false);
/**
* Freebusy start offset that will be used to load freebusy data in appointments, number is subtracted from current time
*/
if(!defined("FREEBUSY_LOAD_START_OFFSET")) define("FREEBUSY_LOAD_START_OFFSET", 7);
/**
* Freebusy end offset that will be used to load freebusy data in appointments, number is added to current time
*/
if(!defined("FREEBUSY_LOAD_END_OFFSET")) define("FREEBUSY_LOAD_END_OFFSET", 90);
/**
* Maximum eml files to be included in a single ZIP archive
*/
if(!defined("MAX_EML_FILES_IN_ZIP")) define("MAX_EML_FILES_IN_ZIP", 50);
/**
* CONTACT_PREFIX used for contact name
*/
if (!defined("CONTACT_PREFIX")) define("CONTACT_PREFIX", false);
/**
* CONTACT_SUFFIX used for contact name
*/
if (!defined("CONTACT_SUFFIX")) define("CONTACT_SUFFIX", false);
/**
* Color schemes used for the calendars
*/
if (!defined("COLOR_SCHEMES")) define("COLOR_SCHEMES", json_encode(array(
array(
'name' => 'pink',
'displayName' => _('Pink'),
'base' => '#ff0099'
),
array(
'name' => 'charmpink',
'displayName' => _('Charm pink'),
'base' => '#f17daa'
),
array(
'name' => 'cadmiumred',
'displayName' => _('Cadmium red'),
'base' => '#e30022'
),
array(
'name' => 'apricot',
'displayName' => _('Apricot'),
'base' => '#f7b884'
),
array(
'name' => 'california',
'displayName' => _('California'),
'base' => '#f89406'
),
array(
'name' => 'yellow',
'displayName' => _('Yellow'),
'base' => '#f7ca18'
),
array(
'name' => 'softgreen',
'displayName' => _('Soft green'),
'base' => '#d3e28b'
),
array(
'name' => 'green',
'displayName' => _('Green'),
'base' => '#5ab557'
),
array(
'name' => 'mint',
'displayName' => _('Mint'),
'base' => '#1fa480'
),
array(
'name' => 'pearlaqua',
'displayName' => _('Pearl aqua'),
'base' => '#88d8c0'
),
array(
'name' => 'kopanoblue',
'displayName' => _('Kopano blue'),
'base' => '#00b3f0'
),
array(
'name' => 'babyblue',
'displayName' => _('Baby blue'),
'base' => '#7bd0f0'
),
array(
'name' => 'blue',
'displayName' => _('Blue'),
'base' => '#0f70bd'
),
array(
'name' => 'mauve',
'displayName' => _('Mauve'),
'base' => '#9a8bbc'
),
array(
'name' => 'purple',
'displayName' => _('Purple'),
'base' => '#912787'
),
array(
'name' => 'silversand',
'displayName' => _('Silver sand'),
'base' => '#bdc3c7'
)
)));
/**
* Predefined categories. Categories should have at least a name and a color. The
* quickAccess property can be set to true to 'pin' the category to the menu. (i.e. it
* will be shown in the categories menu). The sortIndex property can be used to support
* the categories in the menu and 'Manage categories' dialog.
*
* The first six categories have the additional fields standardIndex. This field maps
* these categories to the colored flag that could have been set on an item. These
* flags will be shown as categories in the WebApp.
*/
if (!defined("DEFAULT_CATEGORIES")) define("DEFAULT_CATEGORIES", json_encode(array(
array(
'name' => _('Red'),
'color' => '#e40023',
'standardIndex' => 6,
'quickAccess' => true,
'sortIndex' => 0,
'used' => false
),
array(
'name' => _('Orange'),
'color' => '#f99406',
'standardIndex' => 2,
'quickAccess' => true,
'sortIndex' => 1,
'used' => false
),
array(
'name' => _('Yellow'),
'color' => '#f7ca17',
'standardIndex' => 4,
'quickAccess' => true,
'sortIndex' => 2,
'used' => false
),
array(
'name' => _('Green'),
'color' => '#5ab556',
'standardIndex' => 3,
'quickAccess' => true,
'sortIndex' => 3,
'used' => false
),
array(
'name' => _('Blue'),
'color' => '#0f70bd',
'standardIndex' => 5,
'quickAccess' => true,
'sortIndex' => 4,
'used' => false
),
array(
'name' => _('Purple'),
'color' => '#912887',
'standardIndex' => 1,
'quickAccess' => true,
'sortIndex' => 5,
'used' => false
),
array(
'name' => _('Important'),
'color' => '#F4B7B5'
),
array(
'name' => _('Work'),
'color' => '#B6CAE9'
),
array(
'name' => _('Personal'),
'color' => '#D9E9B6'
),
array(
'name' => _('Holiday'),
'color' => '#EBDA6C'
),
array(
'name' => _('Required'),
'color' => '#E9DAB6'
),
array(
'name' => _('Travel Required'),
'color' => '#B6DDE9'
),
array(
'name' => _('Preparation Required'),
'color' => '#B6B6E9'
),
array(
'name' => _('Birthday'),
'color' => '#DCB6E9'
),
array(
'name' => _('Special Date'),
'color' => '#E9BBB6'
),
array(
'name' => _('Phone Interview'),
'color' => '#C1E9B6'
),
array(
'name' => _('Business'),
'color' => '#BDC3C7'
),
array(
'name' => _('Competition'),
'color' => '#BDC3C7'
),
array(
'name' => _('Favorites'),
'color' => '#BDC3C7'
),
array(
'name' => _('Gifts'),
'color' => '#BDC3C7'
),
array(
'name' => _('Goals/Objectives'),
'color' => '#BDC3C7'
),
array(
'name' => _('Holiday Cards'),
'color' => '#BDC3C7'
),
array(
'name' => _('Hot Contacts'),
'color' => '#BDC3C7'
),
array(
'name' => _('Ideas'),
'color' => '#BDC3C7'
),
array(
'name' => _('International'),
'color' => '#BDC3C7'
),
array(
'name' => _('Key Customer'),
'color' => '#BDC3C7'
),
array(
'name' => _('Miscellaneous'),
'color' => '#BDC3C7'
),
array(
'name' => _('Phone Calls'),
'color' => '#BDC3C7'
),
array(
'name' => _('Status'),
'color' => '#BDC3C7'
),
array(
'name' => _('Strategies'),
'color' => '#BDC3C7'
),
array(
'name' => _('Suppliers'),
'color' => '#BDC3C7'
),
array(
'name' => _('Time & Expenses'),
'color' => '#BDC3C7'
),
array(
'name' => _('VIP'),
'color' => '#BDC3C7'
),
array(
'name' => _('Waiting'),
'color' => '#BDC3C7'
)
)));
/**
* Maximum reminder items we can show on client side.
*/
if(!defined("MAX_NUM_REMINDERS")) define("MAX_NUM_REMINDERS", 99);
/**
* Set true to default soft delete the shared store items
*/
if(!defined("ENABLE_DEFAULT_SOFT_DELETE")) define("ENABLE_DEFAULT_SOFT_DELETE", false);
/**
* Shared store polling timer in minutes
*/
if(!defined("SHARED_STORE_POLLING_INTERVAL")) define("SHARED_STORE_POLLING_INTERVAL", 15);
/**
* Prefetch email count
*/
if(!defined("PREFETCH_EMAIL_COUNT")) define("PREFETCH_EMAIL_COUNT", 10);
if(!defined("PREFETCH_EMAIL_INTERVAL")) define("PREFETCH_EMAIL_INTERVAL", 30);
/**
* Defaults for powerpaste
*/
if(!defined("POWERPASTE_WORD_IMPORT")) define("POWERPASTE_WORD_IMPORT", "merge");
if(!defined("POWERPASTE_HTML_IMPORT")) define("POWERPASTE_HTML_IMPORT", "merge");
if(!defined("POWERPASTE_ALLOW_LOCAL_IMAGES")) define("POWERPASTE_ALLOW_LOCAL_IMAGES", true);
/**
* The following options are taken from the debug.php
*/
if(!defined("DEBUG_LOADER")) define("DEBUG_LOADER", LOAD_RELEASE);
if(!defined("DEBUG_JSONOUT")) define("DEBUG_JSONOUT", false);
if(!defined("DEBUG_JSONOUT_DIR")) define("DEBUG_JSONOUT_DIR", 'debug_json/');
if(!defined("DEBUG_JSONOUT_GZIP")) define("DEBUG_JSONOUT_GZIP", false);
if(!defined("DEBUG_PLUGINS")) define("DEBUG_PLUGINS", false);
if(!defined("DEBUG_PLUGINS_DISABLE_CACHE")) define("DEBUG_PLUGINS_DISABLE_CACHE", false);
if(!defined("DEBUG_DUMP_FILE")) define("DEBUG_DUMP_FILE", "debug.txt");
/**
* Defaults for Logger
*/
if(!defined("LOG_USER_LEVEL")) define("LOG_USER_LEVEL", LOGLEVEL_OFF);
if(!defined("LOG_USERS")) define("LOG_USERS", "");
if(!defined("LOG_FILE_DIR")) define("LOG_FILE_DIR", "");
if(!defined("LOG_SUCCESSFUL_LOGINS")) define("LOG_SUCCESSFUL_LOGINS", false);
/**
* OIDC
*/
if(!defined("OIDC_ISS")) define("OIDC_ISS", "");
if(!defined("OIDC_CLIENT_ID")) define("OIDC_CLIENT_ID", "");
if(!defined("OIDC_SCOPE")) define("OIDC_SCOPE", "openid profile email kopano/gc");
?>