-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.schema.yaml
50 lines (50 loc) · 1.38 KB
/
config.schema.yaml
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
---
primary_smtp_address:
description: "Your primary SMTP address e.g. example@example.com"
required: true
type: "string"
username:
description: "Logon username, either NT style DOMAIN\\user or FQDN style user@fulldomain.com"
type: "string"
required: true
secret: true
password:
description: "Logon password"
type: "string"
required: true
secret: true
server:
description: "Optional server hostname, for when autodiscover is not available"
type: "string"
required: false
verify_ssl:
description: "Verify endpoint SSL details"
type: "boolean"
default: true
required: true
timezone:
description: "Timezone of user"
type: "string"
default: "Europe/London"
required: true
sensor_folder:
default: "Inbox"
type: string
description: "Folder to monitor in the sensor"
required: true
attachment_directory:
default: "/opt/stackstorm/packs/msexchange/attachments"
description: "Fully-qualified server directory to save e-mail attachments to."
type: string
required: true
attachment_directory_maximum_size:
default: 50
type: integer
description: >
Maximum amount of storage space in MB that attachments can use.
required: true
attachment_days_to_keep:
default: 7
type: integer
description: "Length of time to keep attachments in days."
required: true