-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.schema.json
40 lines (40 loc) · 1.44 KB
/
config.schema.json
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
{
"pluginAlias": "smtpMotion",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Converts SMTP messages into HTTP motion alerts that homebridge-camera-ffmpeg understands",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "SMTP Motion",
"description": "A unique name for the accessory."
},
"smtp_port": {
"title": "SMTP Port",
"type": "integer",
"placeholder": 2525,
"description": "The port to run the SMTP server on."
},
"override_http": {
"title": "Override HTTP Port",
"type": "integer",
"description": "If you need to override the HTTP port, or are not running homebridge-camera-ffmpeg."
},
"space_replace": {
"title": "Space Replace",
"type": "string",
"placeholder": "+",
"description": "The character to replace a space with in the camera name portion of the email address."
},
"log_emails": {
"title": "Log Emails",
"type": "boolean",
"description": "Write to the Homebridge log when an email is received."
}
}
}
}