forked from Sunoo/homebridge-smtp-motion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
37 lines (37 loc) · 1.47 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
{
"pluginAlias": "smtpMotion",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Converts SMTP messages into HTTP motion alerts that homebridge-camera-ffmpeg understands",
"footerDisplay": "Raise [Issues](https://github.com/Sunoo/homebridge-smtp-motion/issues) or submit [Pull Requests](https://github.com/Sunoo/homebridge-smtp-motion/pulls) on [Project Page](https://github.com/Sunoo/homebridge-smtp-motion).",
"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."
},
"http_port": {
"title": "HTTP Port",
"type": "integer",
"placeholder": 8080,
"description": "The HTTP port used by 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."
}
}
}
}