@camunda/connectors-element-templates 1.0.10 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -2
- package/src/connectors.js +10 -0
- package/src/element-templates/agenticai-a2a-client-outbound-connector.json +832 -0
- package/src/element-templates/agenticai-a2a-client-polling-inbound-connector-intermediate.json +340 -0
- package/src/element-templates/agenticai-a2a-client-polling-inbound-connector-receive.json +339 -0
- package/src/element-templates/agenticai-a2a-client-webhook-inbound-connector-intermediate.json +558 -0
- package/src/element-templates/agenticai-a2a-client-webhook-inbound-connector-receive.json +557 -0
- package/src/element-templates/agenticai-aiagent-job-worker.json +3307 -9
- package/src/element-templates/agenticai-aiagent-outbound-connector.json +3397 -137
- package/src/element-templates/agenticai-mcp-client-outbound-connector.json +360 -1
- package/src/element-templates/agenticai-mcp-remote-client-outbound-connector.json +1123 -1
- package/src/element-templates/aws-textract-outbound-connector.json +627 -0
- package/src/element-templates/azure-blobstorage-outbound-connector.json +463 -0
- package/src/element-templates/email-outbound-connector.json +1532 -4
- package/src/element-templates/embeddings-vector-database-outbound-connector.json +4 -1
- package/src/element-templates/hubspot-outbound-connector.json +2347 -0
|
@@ -1,4 +1,1528 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"$schema": "https://unpkg.com/@camunda/zeebe-element-templates-json-schema/resources/schema.json",
|
|
4
|
+
"name": "Email Connector",
|
|
5
|
+
"id": "io.camunda.connectors.email.v1",
|
|
6
|
+
"description": "Execute email requests",
|
|
7
|
+
"metadata": {
|
|
8
|
+
"keywords": [
|
|
9
|
+
"send emails",
|
|
10
|
+
"list emails",
|
|
11
|
+
"search emails",
|
|
12
|
+
"delete emails",
|
|
13
|
+
"read emails",
|
|
14
|
+
"move emails"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"documentationRef": "https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/email/",
|
|
18
|
+
"version": 3,
|
|
19
|
+
"category": {
|
|
20
|
+
"id": "connectors",
|
|
21
|
+
"name": "Connectors"
|
|
22
|
+
},
|
|
23
|
+
"appliesTo": ["bpmn:Task"],
|
|
24
|
+
"elementType": {
|
|
25
|
+
"value": "bpmn:ServiceTask"
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"camunda": "^8.6"
|
|
29
|
+
},
|
|
30
|
+
"groups": [
|
|
31
|
+
{
|
|
32
|
+
"id": "authentication",
|
|
33
|
+
"label": "Authentication"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "protocol",
|
|
37
|
+
"label": "Protocol"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "smtpAction",
|
|
41
|
+
"label": "SMTP Action"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "pop3Action",
|
|
45
|
+
"label": "POP3 Action"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "imapAction",
|
|
49
|
+
"label": "IMAP Action"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "sendEmailSmtp",
|
|
53
|
+
"label": "Send Email"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"id": "listEmailsPop3",
|
|
57
|
+
"label": "List Emails"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "searchEmailsPop3",
|
|
61
|
+
"label": "Search Emails"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"id": "deleteEmailPop3",
|
|
65
|
+
"label": "Delete Email"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": "readEmailPop3",
|
|
69
|
+
"label": "Read Email"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "listEmailsImap",
|
|
73
|
+
"label": "List Email"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "searchEmailsImap",
|
|
77
|
+
"label": "Search Emails"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": "readEmailImap",
|
|
81
|
+
"label": "Read Email"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "deleteEmailImap",
|
|
85
|
+
"label": "Read Email"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "moveEmailImap",
|
|
89
|
+
"label": "Move Emails"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": "connector",
|
|
93
|
+
"label": "Connector"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "output",
|
|
97
|
+
"label": "Output mapping"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "error",
|
|
101
|
+
"label": "Error handling"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "retries",
|
|
105
|
+
"label": "Retries"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"properties": [
|
|
109
|
+
{
|
|
110
|
+
"value": "io.camunda:email:1",
|
|
111
|
+
"binding": {
|
|
112
|
+
"property": "type",
|
|
113
|
+
"type": "zeebe:taskDefinition"
|
|
114
|
+
},
|
|
115
|
+
"type": "Hidden"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "authentication.type",
|
|
119
|
+
"label": "Authentication",
|
|
120
|
+
"description": "Specify the Email authentication strategy.",
|
|
121
|
+
"value": "simple",
|
|
122
|
+
"group": "authentication",
|
|
123
|
+
"binding": {
|
|
124
|
+
"name": "authentication.type",
|
|
125
|
+
"type": "zeebe:input"
|
|
126
|
+
},
|
|
127
|
+
"type": "Dropdown",
|
|
128
|
+
"choices": [
|
|
129
|
+
{
|
|
130
|
+
"name": "Simple",
|
|
131
|
+
"value": "simple"
|
|
132
|
+
}
|
|
133
|
+
]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "authentication.simpleAuthenticationUsername",
|
|
137
|
+
"label": "Username",
|
|
138
|
+
"optional": false,
|
|
139
|
+
"constraints": {
|
|
140
|
+
"notEmpty": true
|
|
141
|
+
},
|
|
142
|
+
"feel": "optional",
|
|
143
|
+
"group": "authentication",
|
|
144
|
+
"binding": {
|
|
145
|
+
"name": "authentication.username",
|
|
146
|
+
"type": "zeebe:input"
|
|
147
|
+
},
|
|
148
|
+
"condition": {
|
|
149
|
+
"property": "authentication.type",
|
|
150
|
+
"equals": "simple",
|
|
151
|
+
"type": "simple"
|
|
152
|
+
},
|
|
153
|
+
"tooltip": "Enter your full email address (e.g., user@example.com) or the username provided by your email service. This is used to authenticate your access to the mail server.",
|
|
154
|
+
"type": "String"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id": "authentication.simpleAuthenticationPassword",
|
|
158
|
+
"label": "Email password",
|
|
159
|
+
"optional": false,
|
|
160
|
+
"constraints": {
|
|
161
|
+
"notEmpty": true
|
|
162
|
+
},
|
|
163
|
+
"feel": "optional",
|
|
164
|
+
"group": "authentication",
|
|
165
|
+
"binding": {
|
|
166
|
+
"name": "authentication.password",
|
|
167
|
+
"type": "zeebe:input"
|
|
168
|
+
},
|
|
169
|
+
"condition": {
|
|
170
|
+
"property": "authentication.type",
|
|
171
|
+
"equals": "simple",
|
|
172
|
+
"type": "simple"
|
|
173
|
+
},
|
|
174
|
+
"tooltip": "Enter the password associated with your email account. Keep your password secure and do not share it with others.",
|
|
175
|
+
"type": "String"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"id": "protocol",
|
|
179
|
+
"label": "Email Protocol",
|
|
180
|
+
"value": "smtp",
|
|
181
|
+
"group": "protocol",
|
|
182
|
+
"binding": {
|
|
183
|
+
"name": "protocol",
|
|
184
|
+
"type": "zeebe:input"
|
|
185
|
+
},
|
|
186
|
+
"type": "Dropdown",
|
|
187
|
+
"choices": [
|
|
188
|
+
{
|
|
189
|
+
"name": "IMAP",
|
|
190
|
+
"value": "imap"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "POP3",
|
|
194
|
+
"value": "pop3"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "SMTP",
|
|
198
|
+
"value": "smtp"
|
|
199
|
+
}
|
|
200
|
+
]
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"id": "data.imapHost",
|
|
204
|
+
"label": "IMAP Host",
|
|
205
|
+
"optional": false,
|
|
206
|
+
"constraints": {
|
|
207
|
+
"notEmpty": true
|
|
208
|
+
},
|
|
209
|
+
"feel": "optional",
|
|
210
|
+
"group": "protocol",
|
|
211
|
+
"binding": {
|
|
212
|
+
"name": "data.imapConfig.imapHost",
|
|
213
|
+
"type": "zeebe:input"
|
|
214
|
+
},
|
|
215
|
+
"condition": {
|
|
216
|
+
"property": "protocol",
|
|
217
|
+
"equals": "imap",
|
|
218
|
+
"type": "simple"
|
|
219
|
+
},
|
|
220
|
+
"tooltip": "Enter the address of the IMAP server used to retrieve your emails. This server allows you to sync your messages across multiple devices. (e.g., imap.example.com)",
|
|
221
|
+
"type": "String"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"id": "data.imapPort",
|
|
225
|
+
"label": "IMAP Port",
|
|
226
|
+
"optional": false,
|
|
227
|
+
"value": 993,
|
|
228
|
+
"constraints": {
|
|
229
|
+
"notEmpty": true
|
|
230
|
+
},
|
|
231
|
+
"feel": "optional",
|
|
232
|
+
"group": "protocol",
|
|
233
|
+
"binding": {
|
|
234
|
+
"name": "data.imapConfig.imapPort",
|
|
235
|
+
"type": "zeebe:input"
|
|
236
|
+
},
|
|
237
|
+
"condition": {
|
|
238
|
+
"property": "protocol",
|
|
239
|
+
"equals": "imap",
|
|
240
|
+
"type": "simple"
|
|
241
|
+
},
|
|
242
|
+
"tooltip": "Enter the port number for connecting to the IMAP server. Common ports are 993 for secure connections using SSL/TLS, or 143 for non-secure connections.",
|
|
243
|
+
"type": "Number"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"id": "imapCryptographicProtocol",
|
|
247
|
+
"label": "Encryption protocol",
|
|
248
|
+
"optional": false,
|
|
249
|
+
"value": "TLS",
|
|
250
|
+
"constraints": {
|
|
251
|
+
"notEmpty": true
|
|
252
|
+
},
|
|
253
|
+
"group": "protocol",
|
|
254
|
+
"binding": {
|
|
255
|
+
"name": "data.imapConfig.imapCryptographicProtocol",
|
|
256
|
+
"type": "zeebe:input"
|
|
257
|
+
},
|
|
258
|
+
"condition": {
|
|
259
|
+
"property": "protocol",
|
|
260
|
+
"equals": "imap",
|
|
261
|
+
"type": "simple"
|
|
262
|
+
},
|
|
263
|
+
"tooltip": "Select the encryption protocol for email security.",
|
|
264
|
+
"type": "Dropdown",
|
|
265
|
+
"choices": [
|
|
266
|
+
{
|
|
267
|
+
"name": "TLS",
|
|
268
|
+
"value": "TLS"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "SSL",
|
|
272
|
+
"value": "SSL"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"name": "None",
|
|
276
|
+
"value": "NONE"
|
|
277
|
+
}
|
|
278
|
+
]
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"id": "data.pop3Host",
|
|
282
|
+
"label": "POP3 Host",
|
|
283
|
+
"optional": false,
|
|
284
|
+
"constraints": {
|
|
285
|
+
"notEmpty": true
|
|
286
|
+
},
|
|
287
|
+
"feel": "optional",
|
|
288
|
+
"group": "protocol",
|
|
289
|
+
"binding": {
|
|
290
|
+
"name": "data.pop3Config.pop3Host",
|
|
291
|
+
"type": "zeebe:input"
|
|
292
|
+
},
|
|
293
|
+
"condition": {
|
|
294
|
+
"property": "protocol",
|
|
295
|
+
"equals": "pop3",
|
|
296
|
+
"type": "simple"
|
|
297
|
+
},
|
|
298
|
+
"tooltip": "Enter the address of the POP3 server if you want to download your emails to a single device. This server is typically used for retrieving emails without syncing. (e.g., pop.example.com)",
|
|
299
|
+
"type": "String"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"id": "data.pop3Port",
|
|
303
|
+
"label": "POP3 Port",
|
|
304
|
+
"optional": false,
|
|
305
|
+
"value": 995,
|
|
306
|
+
"constraints": {
|
|
307
|
+
"notEmpty": true
|
|
308
|
+
},
|
|
309
|
+
"feel": "optional",
|
|
310
|
+
"group": "protocol",
|
|
311
|
+
"binding": {
|
|
312
|
+
"name": "data.pop3Config.pop3Port",
|
|
313
|
+
"type": "zeebe:input"
|
|
314
|
+
},
|
|
315
|
+
"condition": {
|
|
316
|
+
"property": "protocol",
|
|
317
|
+
"equals": "pop3",
|
|
318
|
+
"type": "simple"
|
|
319
|
+
},
|
|
320
|
+
"tooltip": "Enter the port number for connecting to the POP3 server. The standard port is 995 for secure connections with SSL/TLS, or 110 for non-secure connections.",
|
|
321
|
+
"type": "Number"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"id": "pop3CryptographicProtocol",
|
|
325
|
+
"label": "Cryptographic protocol",
|
|
326
|
+
"optional": false,
|
|
327
|
+
"value": "TLS",
|
|
328
|
+
"constraints": {
|
|
329
|
+
"notEmpty": true
|
|
330
|
+
},
|
|
331
|
+
"group": "protocol",
|
|
332
|
+
"binding": {
|
|
333
|
+
"name": "data.pop3Config.pop3CryptographicProtocol",
|
|
334
|
+
"type": "zeebe:input"
|
|
335
|
+
},
|
|
336
|
+
"condition": {
|
|
337
|
+
"property": "protocol",
|
|
338
|
+
"equals": "pop3",
|
|
339
|
+
"type": "simple"
|
|
340
|
+
},
|
|
341
|
+
"tooltip": "Select the encryption protocol for email security.",
|
|
342
|
+
"type": "Dropdown",
|
|
343
|
+
"choices": [
|
|
344
|
+
{
|
|
345
|
+
"name": "TLS",
|
|
346
|
+
"value": "TLS"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"name": "SSL",
|
|
350
|
+
"value": "SSL"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "None",
|
|
354
|
+
"value": "NONE"
|
|
355
|
+
}
|
|
356
|
+
]
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"id": "data.smtpHost",
|
|
360
|
+
"label": "SMTP Host",
|
|
361
|
+
"optional": false,
|
|
362
|
+
"constraints": {
|
|
363
|
+
"notEmpty": true
|
|
364
|
+
},
|
|
365
|
+
"feel": "optional",
|
|
366
|
+
"group": "protocol",
|
|
367
|
+
"binding": {
|
|
368
|
+
"name": "data.smtpConfig.smtpHost",
|
|
369
|
+
"type": "zeebe:input"
|
|
370
|
+
},
|
|
371
|
+
"condition": {
|
|
372
|
+
"property": "protocol",
|
|
373
|
+
"equals": "smtp",
|
|
374
|
+
"type": "simple"
|
|
375
|
+
},
|
|
376
|
+
"tooltip": "Provide the address of the SMTP server used for sending emails. This server handles the delivery of your outgoing messages. (e.g., smtp.example.com)",
|
|
377
|
+
"type": "String"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"id": "data.smtpPort",
|
|
381
|
+
"label": "SMTP Port",
|
|
382
|
+
"optional": false,
|
|
383
|
+
"value": 587,
|
|
384
|
+
"constraints": {
|
|
385
|
+
"notEmpty": true
|
|
386
|
+
},
|
|
387
|
+
"feel": "optional",
|
|
388
|
+
"group": "protocol",
|
|
389
|
+
"binding": {
|
|
390
|
+
"name": "data.smtpConfig.smtpPort",
|
|
391
|
+
"type": "zeebe:input"
|
|
392
|
+
},
|
|
393
|
+
"condition": {
|
|
394
|
+
"property": "protocol",
|
|
395
|
+
"equals": "smtp",
|
|
396
|
+
"type": "simple"
|
|
397
|
+
},
|
|
398
|
+
"tooltip": "Enter the port number for connecting to the SMTP server. Typically, port 587 is used for secure connections with STARTTLS, port 465 for secure connections using SSL/TLS, and port 25 for non-secure connections.",
|
|
399
|
+
"type": "Number"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"id": "smtpCryptographicProtocol",
|
|
403
|
+
"label": "Cryptographic protocol",
|
|
404
|
+
"optional": false,
|
|
405
|
+
"value": "TLS",
|
|
406
|
+
"constraints": {
|
|
407
|
+
"notEmpty": true
|
|
408
|
+
},
|
|
409
|
+
"group": "protocol",
|
|
410
|
+
"binding": {
|
|
411
|
+
"name": "data.smtpConfig.smtpCryptographicProtocol",
|
|
412
|
+
"type": "zeebe:input"
|
|
413
|
+
},
|
|
414
|
+
"condition": {
|
|
415
|
+
"property": "protocol",
|
|
416
|
+
"equals": "smtp",
|
|
417
|
+
"type": "simple"
|
|
418
|
+
},
|
|
419
|
+
"tooltip": "Select the encryption protocol for email security.",
|
|
420
|
+
"type": "Dropdown",
|
|
421
|
+
"choices": [
|
|
422
|
+
{
|
|
423
|
+
"name": "TLS",
|
|
424
|
+
"value": "TLS"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"name": "SSL",
|
|
428
|
+
"value": "SSL"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "None",
|
|
432
|
+
"value": "NONE"
|
|
433
|
+
}
|
|
434
|
+
]
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"id": "data.smtpActionDiscriminator",
|
|
438
|
+
"label": "SMTP action",
|
|
439
|
+
"value": "sendEmailSmtp",
|
|
440
|
+
"group": "smtpAction",
|
|
441
|
+
"binding": {
|
|
442
|
+
"name": "data.smtpActionDiscriminator",
|
|
443
|
+
"type": "zeebe:input"
|
|
444
|
+
},
|
|
445
|
+
"condition": {
|
|
446
|
+
"property": "protocol",
|
|
447
|
+
"equals": "smtp",
|
|
448
|
+
"type": "simple"
|
|
449
|
+
},
|
|
450
|
+
"type": "Dropdown",
|
|
451
|
+
"choices": [
|
|
452
|
+
{
|
|
453
|
+
"name": "Send Email",
|
|
454
|
+
"value": "sendEmailSmtp"
|
|
455
|
+
}
|
|
456
|
+
]
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"id": "data.pop3ActionDiscriminator",
|
|
460
|
+
"label": "POP3 action",
|
|
461
|
+
"value": "listEmailsPop3",
|
|
462
|
+
"group": "pop3Action",
|
|
463
|
+
"binding": {
|
|
464
|
+
"name": "data.pop3ActionDiscriminator",
|
|
465
|
+
"type": "zeebe:input"
|
|
466
|
+
},
|
|
467
|
+
"condition": {
|
|
468
|
+
"property": "protocol",
|
|
469
|
+
"equals": "pop3",
|
|
470
|
+
"type": "simple"
|
|
471
|
+
},
|
|
472
|
+
"type": "Dropdown",
|
|
473
|
+
"choices": [
|
|
474
|
+
{
|
|
475
|
+
"name": "Delete Email",
|
|
476
|
+
"value": "deleteEmailPop3"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"name": "List Emails",
|
|
480
|
+
"value": "listEmailsPop3"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"name": "Read Email",
|
|
484
|
+
"value": "readEmailPop3"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"name": "Search emails",
|
|
488
|
+
"value": "searchEmailsPop3"
|
|
489
|
+
}
|
|
490
|
+
]
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"id": "data.imapActionDiscriminator",
|
|
494
|
+
"label": "IMAP action",
|
|
495
|
+
"value": "listEmailsImap",
|
|
496
|
+
"group": "imapAction",
|
|
497
|
+
"binding": {
|
|
498
|
+
"name": "data.imapActionDiscriminator",
|
|
499
|
+
"type": "zeebe:input"
|
|
500
|
+
},
|
|
501
|
+
"condition": {
|
|
502
|
+
"property": "protocol",
|
|
503
|
+
"equals": "imap",
|
|
504
|
+
"type": "simple"
|
|
505
|
+
},
|
|
506
|
+
"type": "Dropdown",
|
|
507
|
+
"choices": [
|
|
508
|
+
{
|
|
509
|
+
"name": "Delete an email",
|
|
510
|
+
"value": "deleteEmailImap"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "List emails",
|
|
514
|
+
"value": "listEmailsImap"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"name": "Move email",
|
|
518
|
+
"value": "moveEmailImap"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "Read an email",
|
|
522
|
+
"value": "readEmailImap"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "Search emails",
|
|
526
|
+
"value": "searchEmailsImap"
|
|
527
|
+
}
|
|
528
|
+
]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"id": "smtpFrom",
|
|
532
|
+
"label": "From",
|
|
533
|
+
"optional": false,
|
|
534
|
+
"constraints": {
|
|
535
|
+
"notEmpty": true
|
|
536
|
+
},
|
|
537
|
+
"feel": "optional",
|
|
538
|
+
"group": "sendEmailSmtp",
|
|
539
|
+
"binding": {
|
|
540
|
+
"name": "data.smtpAction.from",
|
|
541
|
+
"type": "zeebe:input"
|
|
542
|
+
},
|
|
543
|
+
"condition": {
|
|
544
|
+
"allMatch": [
|
|
545
|
+
{
|
|
546
|
+
"property": "data.smtpActionDiscriminator",
|
|
547
|
+
"equals": "sendEmailSmtp",
|
|
548
|
+
"type": "simple"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"property": "protocol",
|
|
552
|
+
"equals": "smtp",
|
|
553
|
+
"type": "simple"
|
|
554
|
+
}
|
|
555
|
+
]
|
|
556
|
+
},
|
|
557
|
+
"tooltip": "Address the email will be sent from",
|
|
558
|
+
"type": "String"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"id": "smtpTo",
|
|
562
|
+
"label": "To",
|
|
563
|
+
"optional": false,
|
|
564
|
+
"constraints": {
|
|
565
|
+
"notEmpty": true
|
|
566
|
+
},
|
|
567
|
+
"feel": "optional",
|
|
568
|
+
"group": "sendEmailSmtp",
|
|
569
|
+
"binding": {
|
|
570
|
+
"name": "data.smtpAction.to",
|
|
571
|
+
"type": "zeebe:input"
|
|
572
|
+
},
|
|
573
|
+
"condition": {
|
|
574
|
+
"allMatch": [
|
|
575
|
+
{
|
|
576
|
+
"property": "data.smtpActionDiscriminator",
|
|
577
|
+
"equals": "sendEmailSmtp",
|
|
578
|
+
"type": "simple"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"property": "protocol",
|
|
582
|
+
"equals": "smtp",
|
|
583
|
+
"type": "simple"
|
|
584
|
+
}
|
|
585
|
+
]
|
|
586
|
+
},
|
|
587
|
+
"tooltip": "Comma-separated list of email, e.g., 'email1@domain.com,email2@domain.com' or '=[ \"email1@domain.com\", \"email2@domain.com\"]'",
|
|
588
|
+
"type": "String"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"id": "smtpCc",
|
|
592
|
+
"label": "Cc",
|
|
593
|
+
"optional": true,
|
|
594
|
+
"feel": "optional",
|
|
595
|
+
"group": "sendEmailSmtp",
|
|
596
|
+
"binding": {
|
|
597
|
+
"name": "data.smtpAction.cc",
|
|
598
|
+
"type": "zeebe:input"
|
|
599
|
+
},
|
|
600
|
+
"condition": {
|
|
601
|
+
"allMatch": [
|
|
602
|
+
{
|
|
603
|
+
"property": "data.smtpActionDiscriminator",
|
|
604
|
+
"equals": "sendEmailSmtp",
|
|
605
|
+
"type": "simple"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"property": "protocol",
|
|
609
|
+
"equals": "smtp",
|
|
610
|
+
"type": "simple"
|
|
611
|
+
}
|
|
612
|
+
]
|
|
613
|
+
},
|
|
614
|
+
"tooltip": "Comma-separated list of email, e.g., 'email1@domain.com,email2@domain.com' or '=[ \"email1@domain.com\", \"email2@domain.com\"]'",
|
|
615
|
+
"type": "String"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"id": "smtpBcc",
|
|
619
|
+
"label": "Bcc",
|
|
620
|
+
"optional": true,
|
|
621
|
+
"feel": "optional",
|
|
622
|
+
"group": "sendEmailSmtp",
|
|
623
|
+
"binding": {
|
|
624
|
+
"name": "data.smtpAction.bcc",
|
|
625
|
+
"type": "zeebe:input"
|
|
626
|
+
},
|
|
627
|
+
"condition": {
|
|
628
|
+
"allMatch": [
|
|
629
|
+
{
|
|
630
|
+
"property": "data.smtpActionDiscriminator",
|
|
631
|
+
"equals": "sendEmailSmtp",
|
|
632
|
+
"type": "simple"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"property": "protocol",
|
|
636
|
+
"equals": "smtp",
|
|
637
|
+
"type": "simple"
|
|
638
|
+
}
|
|
639
|
+
]
|
|
640
|
+
},
|
|
641
|
+
"tooltip": "Comma-separated list of email, e.g., 'email1@domain.com,email2@domain.com' or '=[ \"email1@domain.com\", \"email2@domain.com\"]'",
|
|
642
|
+
"type": "String"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"id": "smtpHeaders",
|
|
646
|
+
"label": "Headers",
|
|
647
|
+
"optional": true,
|
|
648
|
+
"feel": "required",
|
|
649
|
+
"group": "sendEmailSmtp",
|
|
650
|
+
"binding": {
|
|
651
|
+
"name": "data.smtpAction.headers",
|
|
652
|
+
"type": "zeebe:input"
|
|
653
|
+
},
|
|
654
|
+
"condition": {
|
|
655
|
+
"allMatch": [
|
|
656
|
+
{
|
|
657
|
+
"property": "data.smtpActionDiscriminator",
|
|
658
|
+
"equals": "sendEmailSmtp",
|
|
659
|
+
"type": "simple"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"property": "protocol",
|
|
663
|
+
"equals": "smtp",
|
|
664
|
+
"type": "simple"
|
|
665
|
+
}
|
|
666
|
+
]
|
|
667
|
+
},
|
|
668
|
+
"tooltip": "Additional email headers",
|
|
669
|
+
"type": "String"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"id": "smtpSubject",
|
|
673
|
+
"label": "Subject",
|
|
674
|
+
"optional": false,
|
|
675
|
+
"constraints": {
|
|
676
|
+
"notEmpty": true
|
|
677
|
+
},
|
|
678
|
+
"feel": "optional",
|
|
679
|
+
"group": "sendEmailSmtp",
|
|
680
|
+
"binding": {
|
|
681
|
+
"name": "data.smtpAction.subject",
|
|
682
|
+
"type": "zeebe:input"
|
|
683
|
+
},
|
|
684
|
+
"condition": {
|
|
685
|
+
"allMatch": [
|
|
686
|
+
{
|
|
687
|
+
"property": "data.smtpActionDiscriminator",
|
|
688
|
+
"equals": "sendEmailSmtp",
|
|
689
|
+
"type": "simple"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"property": "protocol",
|
|
693
|
+
"equals": "smtp",
|
|
694
|
+
"type": "simple"
|
|
695
|
+
}
|
|
696
|
+
]
|
|
697
|
+
},
|
|
698
|
+
"tooltip": "Email's subject",
|
|
699
|
+
"type": "String"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"id": "contentType",
|
|
703
|
+
"label": "ContentType",
|
|
704
|
+
"optional": false,
|
|
705
|
+
"value": "PLAIN",
|
|
706
|
+
"constraints": {
|
|
707
|
+
"notEmpty": true
|
|
708
|
+
},
|
|
709
|
+
"group": "sendEmailSmtp",
|
|
710
|
+
"binding": {
|
|
711
|
+
"name": "data.smtpAction.contentType",
|
|
712
|
+
"type": "zeebe:input"
|
|
713
|
+
},
|
|
714
|
+
"condition": {
|
|
715
|
+
"allMatch": [
|
|
716
|
+
{
|
|
717
|
+
"property": "data.smtpActionDiscriminator",
|
|
718
|
+
"equals": "sendEmailSmtp",
|
|
719
|
+
"type": "simple"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"property": "protocol",
|
|
723
|
+
"equals": "smtp",
|
|
724
|
+
"type": "simple"
|
|
725
|
+
}
|
|
726
|
+
]
|
|
727
|
+
},
|
|
728
|
+
"tooltip": "Email's contentType",
|
|
729
|
+
"type": "Dropdown",
|
|
730
|
+
"choices": [
|
|
731
|
+
{
|
|
732
|
+
"name": "PLAIN",
|
|
733
|
+
"value": "PLAIN"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"name": "HTML",
|
|
737
|
+
"value": "HTML"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"name": "HTML & Plaintext",
|
|
741
|
+
"value": "MULTIPART"
|
|
742
|
+
}
|
|
743
|
+
]
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"id": "smtpBody",
|
|
747
|
+
"label": "Email Text Content",
|
|
748
|
+
"optional": false,
|
|
749
|
+
"feel": "optional",
|
|
750
|
+
"group": "sendEmailSmtp",
|
|
751
|
+
"binding": {
|
|
752
|
+
"name": "data.smtpAction.body",
|
|
753
|
+
"type": "zeebe:input"
|
|
754
|
+
},
|
|
755
|
+
"condition": {
|
|
756
|
+
"allMatch": [
|
|
757
|
+
{
|
|
758
|
+
"property": "contentType",
|
|
759
|
+
"oneOf": ["PLAIN", "MULTIPART"],
|
|
760
|
+
"type": "simple"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"property": "data.smtpActionDiscriminator",
|
|
764
|
+
"equals": "sendEmailSmtp",
|
|
765
|
+
"type": "simple"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"property": "protocol",
|
|
769
|
+
"equals": "smtp",
|
|
770
|
+
"type": "simple"
|
|
771
|
+
}
|
|
772
|
+
]
|
|
773
|
+
},
|
|
774
|
+
"tooltip": "Email's content",
|
|
775
|
+
"type": "Text"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"id": "smtpHtmlBody",
|
|
779
|
+
"label": "Email Html Content",
|
|
780
|
+
"optional": false,
|
|
781
|
+
"feel": "optional",
|
|
782
|
+
"group": "sendEmailSmtp",
|
|
783
|
+
"binding": {
|
|
784
|
+
"name": "data.smtpAction.htmlBody",
|
|
785
|
+
"type": "zeebe:input"
|
|
786
|
+
},
|
|
787
|
+
"condition": {
|
|
788
|
+
"allMatch": [
|
|
789
|
+
{
|
|
790
|
+
"property": "contentType",
|
|
791
|
+
"oneOf": ["HTML", "MULTIPART"],
|
|
792
|
+
"type": "simple"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"property": "data.smtpActionDiscriminator",
|
|
796
|
+
"equals": "sendEmailSmtp",
|
|
797
|
+
"type": "simple"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"property": "protocol",
|
|
801
|
+
"equals": "smtp",
|
|
802
|
+
"type": "simple"
|
|
803
|
+
}
|
|
804
|
+
]
|
|
805
|
+
},
|
|
806
|
+
"tooltip": "Email's Html content",
|
|
807
|
+
"type": "Text"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"id": "attachmentsSmtp",
|
|
811
|
+
"label": "Attachment",
|
|
812
|
+
"description": "Email's attachment. e.g., =[ document1, document2]",
|
|
813
|
+
"optional": true,
|
|
814
|
+
"feel": "required",
|
|
815
|
+
"group": "sendEmailSmtp",
|
|
816
|
+
"binding": {
|
|
817
|
+
"name": "data.smtpAction.attachments",
|
|
818
|
+
"type": "zeebe:input"
|
|
819
|
+
},
|
|
820
|
+
"condition": {
|
|
821
|
+
"allMatch": [
|
|
822
|
+
{
|
|
823
|
+
"property": "data.smtpActionDiscriminator",
|
|
824
|
+
"equals": "sendEmailSmtp",
|
|
825
|
+
"type": "simple"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"property": "protocol",
|
|
829
|
+
"equals": "smtp",
|
|
830
|
+
"type": "simple"
|
|
831
|
+
}
|
|
832
|
+
]
|
|
833
|
+
},
|
|
834
|
+
"tooltip": "Email's attachments, should be set as a list ",
|
|
835
|
+
"type": "String"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"id": "pop3maxToBeRead",
|
|
839
|
+
"label": "Maximum number of emails to be read",
|
|
840
|
+
"optional": false,
|
|
841
|
+
"value": 100,
|
|
842
|
+
"constraints": {
|
|
843
|
+
"notEmpty": true
|
|
844
|
+
},
|
|
845
|
+
"feel": "static",
|
|
846
|
+
"group": "listEmailsPop3",
|
|
847
|
+
"binding": {
|
|
848
|
+
"name": "data.pop3Action.maxToBeRead",
|
|
849
|
+
"type": "zeebe:input"
|
|
850
|
+
},
|
|
851
|
+
"condition": {
|
|
852
|
+
"allMatch": [
|
|
853
|
+
{
|
|
854
|
+
"property": "data.pop3ActionDiscriminator",
|
|
855
|
+
"equals": "listEmailsPop3",
|
|
856
|
+
"type": "simple"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"property": "protocol",
|
|
860
|
+
"equals": "pop3",
|
|
861
|
+
"type": "simple"
|
|
862
|
+
}
|
|
863
|
+
]
|
|
864
|
+
},
|
|
865
|
+
"tooltip": "Enter the maximum number of emails to be read from the specified folder. This limits the number of emails fetched to avoid performance issues with large mailboxes. The default value is set to 100.",
|
|
866
|
+
"type": "Number"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"id": "pop3SortField",
|
|
870
|
+
"label": "Sort emails by",
|
|
871
|
+
"optional": false,
|
|
872
|
+
"value": "SENT_DATE",
|
|
873
|
+
"constraints": {
|
|
874
|
+
"notEmpty": true
|
|
875
|
+
},
|
|
876
|
+
"group": "listEmailsPop3",
|
|
877
|
+
"binding": {
|
|
878
|
+
"name": "data.pop3Action.sortField",
|
|
879
|
+
"type": "zeebe:input"
|
|
880
|
+
},
|
|
881
|
+
"condition": {
|
|
882
|
+
"allMatch": [
|
|
883
|
+
{
|
|
884
|
+
"property": "data.pop3ActionDiscriminator",
|
|
885
|
+
"equals": "listEmailsPop3",
|
|
886
|
+
"type": "simple"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"property": "protocol",
|
|
890
|
+
"equals": "pop3",
|
|
891
|
+
"type": "simple"
|
|
892
|
+
}
|
|
893
|
+
]
|
|
894
|
+
},
|
|
895
|
+
"tooltip": "Choose the criterion by which the listed emails should be sorted. The default sorting is by 'Sent Date'.",
|
|
896
|
+
"type": "Dropdown",
|
|
897
|
+
"choices": [
|
|
898
|
+
{
|
|
899
|
+
"name": "Sent Date",
|
|
900
|
+
"value": "SENT_DATE"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"name": "Size",
|
|
904
|
+
"value": "SIZE"
|
|
905
|
+
}
|
|
906
|
+
]
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"id": "pop3SortOrder",
|
|
910
|
+
"label": "Sort order",
|
|
911
|
+
"optional": false,
|
|
912
|
+
"value": "ASC",
|
|
913
|
+
"constraints": {
|
|
914
|
+
"notEmpty": true
|
|
915
|
+
},
|
|
916
|
+
"group": "listEmailsPop3",
|
|
917
|
+
"binding": {
|
|
918
|
+
"name": "data.pop3Action.sortOrder",
|
|
919
|
+
"type": "zeebe:input"
|
|
920
|
+
},
|
|
921
|
+
"condition": {
|
|
922
|
+
"allMatch": [
|
|
923
|
+
{
|
|
924
|
+
"property": "data.pop3ActionDiscriminator",
|
|
925
|
+
"equals": "listEmailsPop3",
|
|
926
|
+
"type": "simple"
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"property": "protocol",
|
|
930
|
+
"equals": "pop3",
|
|
931
|
+
"type": "simple"
|
|
932
|
+
}
|
|
933
|
+
]
|
|
934
|
+
},
|
|
935
|
+
"tooltip": "Select the sort order for the emails. Choose 'ASC' for ascending order or 'DESC' for descending order. Ascending order will list older emails first, while descending order will list newer emails first. The default sort order is 'ASC'.",
|
|
936
|
+
"type": "Dropdown",
|
|
937
|
+
"choices": [
|
|
938
|
+
{
|
|
939
|
+
"name": "ASC",
|
|
940
|
+
"value": "ASC"
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"name": "DESC",
|
|
944
|
+
"value": "DESC"
|
|
945
|
+
}
|
|
946
|
+
]
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"id": "searchStringEmailPop3",
|
|
950
|
+
"label": "Search criteria",
|
|
951
|
+
"description": "Refer to our detailed documentation for full search syntax and examples: [Email Documentation](https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/email/).",
|
|
952
|
+
"optional": true,
|
|
953
|
+
"feel": "required",
|
|
954
|
+
"group": "searchEmailsPop3",
|
|
955
|
+
"binding": {
|
|
956
|
+
"name": "data.pop3Action.criteria",
|
|
957
|
+
"type": "zeebe:input"
|
|
958
|
+
},
|
|
959
|
+
"condition": {
|
|
960
|
+
"allMatch": [
|
|
961
|
+
{
|
|
962
|
+
"property": "data.pop3ActionDiscriminator",
|
|
963
|
+
"equals": "searchEmailsPop3",
|
|
964
|
+
"type": "simple"
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"property": "protocol",
|
|
968
|
+
"equals": "pop3",
|
|
969
|
+
"type": "simple"
|
|
970
|
+
}
|
|
971
|
+
]
|
|
972
|
+
},
|
|
973
|
+
"tooltip": "Define the search criteria using supported keywords and syntax to filter emails.",
|
|
974
|
+
"type": "Text"
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"id": "pop3MessageIdDelete",
|
|
978
|
+
"label": "Message ID",
|
|
979
|
+
"optional": false,
|
|
980
|
+
"constraints": {
|
|
981
|
+
"notEmpty": true
|
|
982
|
+
},
|
|
983
|
+
"feel": "optional",
|
|
984
|
+
"group": "deleteEmailPop3",
|
|
985
|
+
"binding": {
|
|
986
|
+
"name": "data.pop3Action.messageId",
|
|
987
|
+
"type": "zeebe:input"
|
|
988
|
+
},
|
|
989
|
+
"condition": {
|
|
990
|
+
"allMatch": [
|
|
991
|
+
{
|
|
992
|
+
"property": "data.pop3ActionDiscriminator",
|
|
993
|
+
"equals": "deleteEmailPop3",
|
|
994
|
+
"type": "simple"
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"property": "protocol",
|
|
998
|
+
"equals": "pop3",
|
|
999
|
+
"type": "simple"
|
|
1000
|
+
}
|
|
1001
|
+
]
|
|
1002
|
+
},
|
|
1003
|
+
"tooltip": "The ID of the message, typically returned by a previous email task.",
|
|
1004
|
+
"type": "String"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"id": "pop3MessageIdRead",
|
|
1008
|
+
"label": "Message ID",
|
|
1009
|
+
"optional": false,
|
|
1010
|
+
"constraints": {
|
|
1011
|
+
"notEmpty": true
|
|
1012
|
+
},
|
|
1013
|
+
"feel": "optional",
|
|
1014
|
+
"group": "readEmailPop3",
|
|
1015
|
+
"binding": {
|
|
1016
|
+
"name": "data.pop3Action.messageId",
|
|
1017
|
+
"type": "zeebe:input"
|
|
1018
|
+
},
|
|
1019
|
+
"condition": {
|
|
1020
|
+
"allMatch": [
|
|
1021
|
+
{
|
|
1022
|
+
"property": "data.pop3ActionDiscriminator",
|
|
1023
|
+
"equals": "readEmailPop3",
|
|
1024
|
+
"type": "simple"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"property": "protocol",
|
|
1028
|
+
"equals": "pop3",
|
|
1029
|
+
"type": "simple"
|
|
1030
|
+
}
|
|
1031
|
+
]
|
|
1032
|
+
},
|
|
1033
|
+
"tooltip": "The ID of the message, typically returned by a previous email task. Warning: reading an email using POP3 will delete it",
|
|
1034
|
+
"type": "String"
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"id": "imapMaxToBeRead",
|
|
1038
|
+
"label": "Maximum number of emails to be read",
|
|
1039
|
+
"optional": false,
|
|
1040
|
+
"value": 100,
|
|
1041
|
+
"constraints": {
|
|
1042
|
+
"notEmpty": true
|
|
1043
|
+
},
|
|
1044
|
+
"feel": "static",
|
|
1045
|
+
"group": "listEmailsImap",
|
|
1046
|
+
"binding": {
|
|
1047
|
+
"name": "data.imapAction.maxToBeRead",
|
|
1048
|
+
"type": "zeebe:input"
|
|
1049
|
+
},
|
|
1050
|
+
"condition": {
|
|
1051
|
+
"allMatch": [
|
|
1052
|
+
{
|
|
1053
|
+
"property": "data.imapActionDiscriminator",
|
|
1054
|
+
"equals": "listEmailsImap",
|
|
1055
|
+
"type": "simple"
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"property": "protocol",
|
|
1059
|
+
"equals": "imap",
|
|
1060
|
+
"type": "simple"
|
|
1061
|
+
}
|
|
1062
|
+
]
|
|
1063
|
+
},
|
|
1064
|
+
"tooltip": "Enter the maximum number of emails to be read from the specified folder. This limits the number of emails fetched to avoid performance issues with large mailboxes. The default value is set to 100.",
|
|
1065
|
+
"type": "Number"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"id": "imapListEmailsFolder",
|
|
1069
|
+
"label": "Folder",
|
|
1070
|
+
"optional": true,
|
|
1071
|
+
"feel": "optional",
|
|
1072
|
+
"group": "listEmailsImap",
|
|
1073
|
+
"binding": {
|
|
1074
|
+
"name": "data.imapAction.listEmailsFolder",
|
|
1075
|
+
"type": "zeebe:input"
|
|
1076
|
+
},
|
|
1077
|
+
"condition": {
|
|
1078
|
+
"allMatch": [
|
|
1079
|
+
{
|
|
1080
|
+
"property": "data.imapActionDiscriminator",
|
|
1081
|
+
"equals": "listEmailsImap",
|
|
1082
|
+
"type": "simple"
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"property": "protocol",
|
|
1086
|
+
"equals": "imap",
|
|
1087
|
+
"type": "simple"
|
|
1088
|
+
}
|
|
1089
|
+
]
|
|
1090
|
+
},
|
|
1091
|
+
"tooltip": "Specify the folder from which you want to list emails (e.g., 'INBOX', 'Sent', 'Drafts'). If left blank, emails will be listed from the default 'INBOX' folder.",
|
|
1092
|
+
"type": "String"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"id": "imapSortField",
|
|
1096
|
+
"label": "Sort emails by",
|
|
1097
|
+
"optional": false,
|
|
1098
|
+
"value": "RECEIVED_DATE",
|
|
1099
|
+
"constraints": {
|
|
1100
|
+
"notEmpty": true
|
|
1101
|
+
},
|
|
1102
|
+
"group": "listEmailsImap",
|
|
1103
|
+
"binding": {
|
|
1104
|
+
"name": "data.imapAction.sortField",
|
|
1105
|
+
"type": "zeebe:input"
|
|
1106
|
+
},
|
|
1107
|
+
"condition": {
|
|
1108
|
+
"allMatch": [
|
|
1109
|
+
{
|
|
1110
|
+
"property": "data.imapActionDiscriminator",
|
|
1111
|
+
"equals": "listEmailsImap",
|
|
1112
|
+
"type": "simple"
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"property": "protocol",
|
|
1116
|
+
"equals": "imap",
|
|
1117
|
+
"type": "simple"
|
|
1118
|
+
}
|
|
1119
|
+
]
|
|
1120
|
+
},
|
|
1121
|
+
"tooltip": "Choose the criterion by which the listed emails should be sorted. The default sorting is by 'Received Date'.",
|
|
1122
|
+
"type": "Dropdown",
|
|
1123
|
+
"choices": [
|
|
1124
|
+
{
|
|
1125
|
+
"name": "Received Date",
|
|
1126
|
+
"value": "RECEIVED_DATE"
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"name": "Sent Date",
|
|
1130
|
+
"value": "SENT_DATE"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"name": "Size",
|
|
1134
|
+
"value": "SIZE"
|
|
1135
|
+
}
|
|
1136
|
+
]
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"id": "imapSortOrder",
|
|
1140
|
+
"label": "Sort order",
|
|
1141
|
+
"optional": false,
|
|
1142
|
+
"value": "ASC",
|
|
1143
|
+
"constraints": {
|
|
1144
|
+
"notEmpty": true
|
|
1145
|
+
},
|
|
1146
|
+
"group": "listEmailsImap",
|
|
1147
|
+
"binding": {
|
|
1148
|
+
"name": "data.imapAction.sortOrder",
|
|
1149
|
+
"type": "zeebe:input"
|
|
1150
|
+
},
|
|
1151
|
+
"condition": {
|
|
1152
|
+
"allMatch": [
|
|
1153
|
+
{
|
|
1154
|
+
"property": "data.imapActionDiscriminator",
|
|
1155
|
+
"equals": "listEmailsImap",
|
|
1156
|
+
"type": "simple"
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
"property": "protocol",
|
|
1160
|
+
"equals": "imap",
|
|
1161
|
+
"type": "simple"
|
|
1162
|
+
}
|
|
1163
|
+
]
|
|
1164
|
+
},
|
|
1165
|
+
"tooltip": "Select the sort order for the emails. Choose 'ASC' for ascending order or 'DESC' for descending order. Ascending order will list older emails first, while descending order will list newer emails first. The default sort order is 'ASC'.",
|
|
1166
|
+
"type": "Dropdown",
|
|
1167
|
+
"choices": [
|
|
1168
|
+
{
|
|
1169
|
+
"name": "ASC",
|
|
1170
|
+
"value": "ASC"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"name": "DESC",
|
|
1174
|
+
"value": "DESC"
|
|
1175
|
+
}
|
|
1176
|
+
]
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"id": "searchStringEmailImap",
|
|
1180
|
+
"label": "Search criteria",
|
|
1181
|
+
"description": "Refer to our detailed documentation for full search syntax and examples: [Email Documentation](https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/email/).",
|
|
1182
|
+
"optional": true,
|
|
1183
|
+
"feel": "required",
|
|
1184
|
+
"group": "searchEmailsImap",
|
|
1185
|
+
"binding": {
|
|
1186
|
+
"name": "data.imapAction.criteria",
|
|
1187
|
+
"type": "zeebe:input"
|
|
1188
|
+
},
|
|
1189
|
+
"condition": {
|
|
1190
|
+
"allMatch": [
|
|
1191
|
+
{
|
|
1192
|
+
"property": "data.imapActionDiscriminator",
|
|
1193
|
+
"equals": "searchEmailsImap",
|
|
1194
|
+
"type": "simple"
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"property": "protocol",
|
|
1198
|
+
"equals": "imap",
|
|
1199
|
+
"type": "simple"
|
|
1200
|
+
}
|
|
1201
|
+
]
|
|
1202
|
+
},
|
|
1203
|
+
"tooltip": "Define the search criteria using supported keywords and syntax to filter emails.",
|
|
1204
|
+
"type": "Text"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"id": "searchEmailFolder",
|
|
1208
|
+
"label": "Folder",
|
|
1209
|
+
"optional": true,
|
|
1210
|
+
"feel": "optional",
|
|
1211
|
+
"group": "searchEmailsImap",
|
|
1212
|
+
"binding": {
|
|
1213
|
+
"name": "data.imapAction.searchEmailFolder",
|
|
1214
|
+
"type": "zeebe:input"
|
|
1215
|
+
},
|
|
1216
|
+
"condition": {
|
|
1217
|
+
"allMatch": [
|
|
1218
|
+
{
|
|
1219
|
+
"property": "data.imapActionDiscriminator",
|
|
1220
|
+
"equals": "searchEmailsImap",
|
|
1221
|
+
"type": "simple"
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"property": "protocol",
|
|
1225
|
+
"equals": "imap",
|
|
1226
|
+
"type": "simple"
|
|
1227
|
+
}
|
|
1228
|
+
]
|
|
1229
|
+
},
|
|
1230
|
+
"tooltip": "Specify the folder in which to conduct the email search. If left blank, the search will default to the 'INBOX' folder. You may also specify subfolders using a dot-separated path (e.g., 'INBOX.Archives').",
|
|
1231
|
+
"type": "String"
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"id": "imapMessageIdRead",
|
|
1235
|
+
"label": "Message ID",
|
|
1236
|
+
"optional": false,
|
|
1237
|
+
"constraints": {
|
|
1238
|
+
"notEmpty": true
|
|
1239
|
+
},
|
|
1240
|
+
"feel": "optional",
|
|
1241
|
+
"group": "readEmailImap",
|
|
1242
|
+
"binding": {
|
|
1243
|
+
"name": "data.imapAction.messageId",
|
|
1244
|
+
"type": "zeebe:input"
|
|
1245
|
+
},
|
|
1246
|
+
"condition": {
|
|
1247
|
+
"allMatch": [
|
|
1248
|
+
{
|
|
1249
|
+
"property": "data.imapActionDiscriminator",
|
|
1250
|
+
"equals": "readEmailImap",
|
|
1251
|
+
"type": "simple"
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
"property": "protocol",
|
|
1255
|
+
"equals": "imap",
|
|
1256
|
+
"type": "simple"
|
|
1257
|
+
}
|
|
1258
|
+
]
|
|
1259
|
+
},
|
|
1260
|
+
"tooltip": "The ID of the message, typically returned by a previous email task.",
|
|
1261
|
+
"type": "String"
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"id": "readEmailFolder",
|
|
1265
|
+
"label": "Folder",
|
|
1266
|
+
"optional": true,
|
|
1267
|
+
"feel": "optional",
|
|
1268
|
+
"group": "readEmailImap",
|
|
1269
|
+
"binding": {
|
|
1270
|
+
"name": "data.imapAction.readEmailFolder",
|
|
1271
|
+
"type": "zeebe:input"
|
|
1272
|
+
},
|
|
1273
|
+
"condition": {
|
|
1274
|
+
"allMatch": [
|
|
1275
|
+
{
|
|
1276
|
+
"property": "data.imapActionDiscriminator",
|
|
1277
|
+
"equals": "readEmailImap",
|
|
1278
|
+
"type": "simple"
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"property": "protocol",
|
|
1282
|
+
"equals": "imap",
|
|
1283
|
+
"type": "simple"
|
|
1284
|
+
}
|
|
1285
|
+
]
|
|
1286
|
+
},
|
|
1287
|
+
"tooltip": "Enter the name of the folder from which you wish to read emails. If left blank, emails will be read from the default 'INBOX' folder.",
|
|
1288
|
+
"type": "String"
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"id": "imapMessageIdDelete",
|
|
1292
|
+
"label": "Message ID",
|
|
1293
|
+
"optional": false,
|
|
1294
|
+
"constraints": {
|
|
1295
|
+
"notEmpty": true
|
|
1296
|
+
},
|
|
1297
|
+
"feel": "optional",
|
|
1298
|
+
"group": "deleteEmailImap",
|
|
1299
|
+
"binding": {
|
|
1300
|
+
"name": "data.imapAction.messageId",
|
|
1301
|
+
"type": "zeebe:input"
|
|
1302
|
+
},
|
|
1303
|
+
"condition": {
|
|
1304
|
+
"allMatch": [
|
|
1305
|
+
{
|
|
1306
|
+
"property": "data.imapActionDiscriminator",
|
|
1307
|
+
"equals": "deleteEmailImap",
|
|
1308
|
+
"type": "simple"
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"property": "protocol",
|
|
1312
|
+
"equals": "imap",
|
|
1313
|
+
"type": "simple"
|
|
1314
|
+
}
|
|
1315
|
+
]
|
|
1316
|
+
},
|
|
1317
|
+
"tooltip": "The ID of the message, typically returned by a previous email task.",
|
|
1318
|
+
"type": "String"
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"id": "deleteEmailFolder",
|
|
1322
|
+
"label": "Folder",
|
|
1323
|
+
"optional": true,
|
|
1324
|
+
"feel": "optional",
|
|
1325
|
+
"group": "deleteEmailImap",
|
|
1326
|
+
"binding": {
|
|
1327
|
+
"name": "data.imapAction.deleteEmailFolder",
|
|
1328
|
+
"type": "zeebe:input"
|
|
1329
|
+
},
|
|
1330
|
+
"condition": {
|
|
1331
|
+
"allMatch": [
|
|
1332
|
+
{
|
|
1333
|
+
"property": "data.imapActionDiscriminator",
|
|
1334
|
+
"equals": "deleteEmailImap",
|
|
1335
|
+
"type": "simple"
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"property": "protocol",
|
|
1339
|
+
"equals": "imap",
|
|
1340
|
+
"type": "simple"
|
|
1341
|
+
}
|
|
1342
|
+
]
|
|
1343
|
+
},
|
|
1344
|
+
"tooltip": "Specify the name of the folder from which you want to delete emails. If left blank, the default 'INBOX' will be used. For example, you can enter 'Trash' to delete emails from the Trash folder.",
|
|
1345
|
+
"type": "String"
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"id": "imapMessageIdMove",
|
|
1349
|
+
"label": "Message ID",
|
|
1350
|
+
"optional": false,
|
|
1351
|
+
"constraints": {
|
|
1352
|
+
"notEmpty": true
|
|
1353
|
+
},
|
|
1354
|
+
"feel": "optional",
|
|
1355
|
+
"group": "moveEmailImap",
|
|
1356
|
+
"binding": {
|
|
1357
|
+
"name": "data.imapAction.messageId",
|
|
1358
|
+
"type": "zeebe:input"
|
|
1359
|
+
},
|
|
1360
|
+
"condition": {
|
|
1361
|
+
"allMatch": [
|
|
1362
|
+
{
|
|
1363
|
+
"property": "data.imapActionDiscriminator",
|
|
1364
|
+
"equals": "moveEmailImap",
|
|
1365
|
+
"type": "simple"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"property": "protocol",
|
|
1369
|
+
"equals": "imap",
|
|
1370
|
+
"type": "simple"
|
|
1371
|
+
}
|
|
1372
|
+
]
|
|
1373
|
+
},
|
|
1374
|
+
"tooltip": "The ID of the message, typically returned by a previous email task.",
|
|
1375
|
+
"type": "String"
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"id": "data.fromFolder",
|
|
1379
|
+
"label": "Source folder",
|
|
1380
|
+
"optional": false,
|
|
1381
|
+
"constraints": {
|
|
1382
|
+
"notEmpty": true
|
|
1383
|
+
},
|
|
1384
|
+
"feel": "optional",
|
|
1385
|
+
"group": "moveEmailImap",
|
|
1386
|
+
"binding": {
|
|
1387
|
+
"name": "data.imapAction.fromFolder",
|
|
1388
|
+
"type": "zeebe:input"
|
|
1389
|
+
},
|
|
1390
|
+
"condition": {
|
|
1391
|
+
"allMatch": [
|
|
1392
|
+
{
|
|
1393
|
+
"property": "data.imapActionDiscriminator",
|
|
1394
|
+
"equals": "moveEmailImap",
|
|
1395
|
+
"type": "simple"
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"property": "protocol",
|
|
1399
|
+
"equals": "imap",
|
|
1400
|
+
"type": "simple"
|
|
1401
|
+
}
|
|
1402
|
+
]
|
|
1403
|
+
},
|
|
1404
|
+
"tooltip": "Enter the name of the folder from which the emails will be moved. This field is required. For example, enter 'INBOX' to move emails from your Inbox.",
|
|
1405
|
+
"type": "String"
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"id": "data.toFolder",
|
|
1409
|
+
"label": "Target folder",
|
|
1410
|
+
"optional": false,
|
|
1411
|
+
"constraints": {
|
|
1412
|
+
"notEmpty": true
|
|
1413
|
+
},
|
|
1414
|
+
"feel": "optional",
|
|
1415
|
+
"group": "moveEmailImap",
|
|
1416
|
+
"binding": {
|
|
1417
|
+
"name": "data.imapAction.toFolder",
|
|
1418
|
+
"type": "zeebe:input"
|
|
1419
|
+
},
|
|
1420
|
+
"condition": {
|
|
1421
|
+
"allMatch": [
|
|
1422
|
+
{
|
|
1423
|
+
"property": "data.imapActionDiscriminator",
|
|
1424
|
+
"equals": "moveEmailImap",
|
|
1425
|
+
"type": "simple"
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"property": "protocol",
|
|
1429
|
+
"equals": "imap",
|
|
1430
|
+
"type": "simple"
|
|
1431
|
+
}
|
|
1432
|
+
]
|
|
1433
|
+
},
|
|
1434
|
+
"tooltip": "Specify the destination folder to which the emails will be moved. To create a new folder or a hierarchy of folders, use a dot-separated path (e.g., 'Archive' or 'Projects.2023.January'). If any part of the path does not exist, it will be created automatically.",
|
|
1435
|
+
"type": "String"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"id": "version",
|
|
1439
|
+
"label": "Version",
|
|
1440
|
+
"description": "Version of the element template",
|
|
1441
|
+
"value": "3",
|
|
1442
|
+
"group": "connector",
|
|
1443
|
+
"binding": {
|
|
1444
|
+
"key": "elementTemplateVersion",
|
|
1445
|
+
"type": "zeebe:taskHeader"
|
|
1446
|
+
},
|
|
1447
|
+
"type": "Hidden"
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"id": "id",
|
|
1451
|
+
"label": "ID",
|
|
1452
|
+
"description": "ID of the element template",
|
|
1453
|
+
"value": "io.camunda.connectors.email.v1",
|
|
1454
|
+
"group": "connector",
|
|
1455
|
+
"binding": {
|
|
1456
|
+
"key": "elementTemplateId",
|
|
1457
|
+
"type": "zeebe:taskHeader"
|
|
1458
|
+
},
|
|
1459
|
+
"type": "Hidden"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"id": "resultVariable",
|
|
1463
|
+
"label": "Result variable",
|
|
1464
|
+
"description": "Name of variable to store the response in",
|
|
1465
|
+
"group": "output",
|
|
1466
|
+
"binding": {
|
|
1467
|
+
"key": "resultVariable",
|
|
1468
|
+
"type": "zeebe:taskHeader"
|
|
1469
|
+
},
|
|
1470
|
+
"type": "String"
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"id": "resultExpression",
|
|
1474
|
+
"label": "Result expression",
|
|
1475
|
+
"description": "Expression to map the response into process variables",
|
|
1476
|
+
"feel": "required",
|
|
1477
|
+
"group": "output",
|
|
1478
|
+
"binding": {
|
|
1479
|
+
"key": "resultExpression",
|
|
1480
|
+
"type": "zeebe:taskHeader"
|
|
1481
|
+
},
|
|
1482
|
+
"type": "Text"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
"id": "errorExpression",
|
|
1486
|
+
"label": "Error expression",
|
|
1487
|
+
"description": "Expression to handle errors. Details in the <a href=\"https://docs.camunda.io/docs/components/connectors/use-connectors/\" target=\"_blank\">documentation</a>.",
|
|
1488
|
+
"feel": "required",
|
|
1489
|
+
"group": "error",
|
|
1490
|
+
"binding": {
|
|
1491
|
+
"key": "errorExpression",
|
|
1492
|
+
"type": "zeebe:taskHeader"
|
|
1493
|
+
},
|
|
1494
|
+
"type": "Text"
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
"id": "retryCount",
|
|
1498
|
+
"label": "Retries",
|
|
1499
|
+
"description": "Number of retries",
|
|
1500
|
+
"value": "3",
|
|
1501
|
+
"feel": "optional",
|
|
1502
|
+
"group": "retries",
|
|
1503
|
+
"binding": {
|
|
1504
|
+
"property": "retries",
|
|
1505
|
+
"type": "zeebe:taskDefinition"
|
|
1506
|
+
},
|
|
1507
|
+
"type": "String"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"id": "retryBackoff",
|
|
1511
|
+
"label": "Retry backoff",
|
|
1512
|
+
"description": "ISO-8601 duration to wait between retries",
|
|
1513
|
+
"value": "PT0S",
|
|
1514
|
+
"group": "retries",
|
|
1515
|
+
"binding": {
|
|
1516
|
+
"key": "retryBackoff",
|
|
1517
|
+
"type": "zeebe:taskHeader"
|
|
1518
|
+
},
|
|
1519
|
+
"type": "String"
|
|
1520
|
+
}
|
|
1521
|
+
],
|
|
1522
|
+
"icon": {
|
|
1523
|
+
"contents": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzkwXzI0MjApIj4KPHBhdGggZD0iTTguMzM4MzUgOS45NTM2NUwxMC4zODk0IDEyLjAxMDRMOC4zMzI2MiAxNC4wNjcyTDkuMTQ2MTYgMTQuODc1TDEyLjAxMDcgMTIuMDEwNEw5LjE0NjE2IDkuMTQ1ODNMOC4zMzgzNSA5Ljk1MzY1WiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZD0iTTEyLjM0ODggOS45NTM2NUwxNC4zOTk4IDEyLjAxMDRMMTIuMzQzIDE0LjA2NzJMMTMuMTU2NiAxNC44NzVMMTYuMDIxMiAxMi4wMTA0TDEzLjE1NjYgOS4xNDU4M0wxMi4zNDg4IDkuOTUzNjVaIiBmaWxsPSJibGFjayIvPgo8cGF0aCBkPSJNMy45NzIgMTEuNDM3NUgxLjEyNTMzVjIuNzkyMTlMNy42NzM3NiA3LjMyMzk2QzcuNzY5NjcgNy4zOTA0OSA3Ljg4MzYgNy40MjYxNCA4LjAwMDMyIDcuNDI2MTRDOC4xMTcwNSA3LjQyNjE0IDguMjMwOTggNy4zOTA0OSA4LjMyNjg5IDcuMzIzOTZMMTQuODc1MyAyLjc5MjE5VjhIMTYuMDIxMlYyLjI3MDgzQzE2LjAyMTIgMS45NjY5NCAxNS45MDA0IDEuNjc1NDkgMTUuNjg1NiAxLjQ2MDYxQzE1LjQ3MDcgMS4yNDU3MiAxNS4xNzkyIDEuMTI1IDE0Ljg3NTMgMS4xMjVIMS4xMjUzM0MwLjgyMTQzMiAxLjEyNSAwLjUyOTk4NCAxLjI0NTcyIDAuMzE1MDk5IDEuNDYwNjFDMC4xMDAyMTQgMS42NzU0OSAtMC4wMjA1MDc4IDEuOTY2OTQgLTAuMDIwNTA3OCAyLjI3MDgzVjExLjQzNzVDLTAuMDIwNTA3OCAxMS43NDE0IDAuMTAwMjE0IDEyLjAzMjggMC4zMTUwOTkgMTIuMjQ3N0MwLjUyOTk4NCAxMi40NjI2IDAuODIxNDMyIDEyLjU4MzMgMS4xMjUzMyAxMi41ODMzSDMuOTcyVjExLjQzNzVaTTEzLjYxNDkgMi4yNzA4M0w4LjAwMDMyIDYuMTU1MjFMMi4zODU3NCAyLjI3MDgzSDEzLjYxNDlaIiBmaWxsPSIjRkM1RDBEIi8+CjxwYXRoIGQ9Ik00LjI4MjEgOS45NTM2NUw2LjMzMzE0IDEyLjAxMDRMNC4yNzYzNyAxNC4wNjcyTDUuMDg5OTEgMTQuODc1TDcuOTU0NDkgMTIuMDEwNEw1LjA4OTkxIDkuMTQ1ODNMNC4yODIxIDkuOTUzNjVaIiBmaWxsPSJibGFjayIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzkwXzI0MjAiPgo8cmVjdCB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg=="
|
|
1524
|
+
}
|
|
1525
|
+
},
|
|
2
1526
|
{
|
|
3
1527
|
"$schema": "https://unpkg.com/@camunda/zeebe-element-templates-json-schema/resources/schema.json",
|
|
4
1528
|
"name": "Email Connector",
|
|
@@ -2862,7 +4386,7 @@
|
|
|
2862
4386
|
]
|
|
2863
4387
|
},
|
|
2864
4388
|
"documentationRef": "https://docs.camunda.io/docs/components/connectors/out-of-the-box-connectors/email/",
|
|
2865
|
-
"version":
|
|
4389
|
+
"version": 4,
|
|
2866
4390
|
"category": {
|
|
2867
4391
|
"id": "connectors",
|
|
2868
4392
|
"name": "Connectors"
|
|
@@ -2872,7 +4396,7 @@
|
|
|
2872
4396
|
"value": "bpmn:ServiceTask"
|
|
2873
4397
|
},
|
|
2874
4398
|
"engines": {
|
|
2875
|
-
"camunda": "^8.
|
|
4399
|
+
"camunda": "^8.9"
|
|
2876
4400
|
},
|
|
2877
4401
|
"groups": [
|
|
2878
4402
|
{
|
|
@@ -2964,7 +4488,7 @@
|
|
|
2964
4488
|
{
|
|
2965
4489
|
"id": "authentication.type",
|
|
2966
4490
|
"label": "Authentication",
|
|
2967
|
-
"description": "Specify the Email authentication strategy.",
|
|
4491
|
+
"description": "Specify the Email authentication strategy. None is only supported for SMTP.",
|
|
2968
4492
|
"value": "simple",
|
|
2969
4493
|
"group": "authentication",
|
|
2970
4494
|
"binding": {
|
|
@@ -2976,6 +4500,10 @@
|
|
|
2976
4500
|
{
|
|
2977
4501
|
"name": "Simple",
|
|
2978
4502
|
"value": "simple"
|
|
4503
|
+
},
|
|
4504
|
+
{
|
|
4505
|
+
"name": "None",
|
|
4506
|
+
"value": "noAuth"
|
|
2979
4507
|
}
|
|
2980
4508
|
]
|
|
2981
4509
|
},
|
|
@@ -4285,7 +5813,7 @@
|
|
|
4285
5813
|
"id": "version",
|
|
4286
5814
|
"label": "Version",
|
|
4287
5815
|
"description": "Version of the element template",
|
|
4288
|
-
"value": "
|
|
5816
|
+
"value": "4",
|
|
4289
5817
|
"group": "connector",
|
|
4290
5818
|
"binding": {
|
|
4291
5819
|
"key": "elementTemplateVersion",
|